home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / decimal.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  86KB  |  3,065 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''
  5. This is a Py2.3 implementation of decimal floating point arithmetic based on
  6. the General Decimal Arithmetic Specification:
  7.  
  8.     www2.hursley.ibm.com/decimal/decarith.html
  9.  
  10. and IEEE standard 854-1987:
  11.  
  12.     www.cs.berkeley.edu/~ejr/projects/754/private/drafts/854-1987/dir.html
  13.  
  14. Decimal floating point has finite precision with arbitrarily large bounds.
  15.  
  16. The purpose of the module is to support arithmetic using familiar
  17. "schoolhouse" rules and to avoid the some of tricky representation
  18. issues associated with binary floating point.  The package is especially
  19. useful for financial applications or for contexts where users have
  20. expectations that are at odds with binary floating point (for instance,
  21. in binary floating point, 1.00 % 0.1 gives 0.09999999999999995 instead
  22. of the expected Decimal("0.00") returned by decimal floating point).
  23.  
  24. Here are some examples of using the decimal module:
  25.  
  26. >>> from decimal import *
  27. >>> setcontext(ExtendedContext)
  28. >>> Decimal(0)
  29. Decimal("0")
  30. >>> Decimal("1")
  31. Decimal("1")
  32. >>> Decimal("-.0123")
  33. Decimal("-0.0123")
  34. >>> Decimal(123456)
  35. Decimal("123456")
  36. >>> Decimal("123.45e12345678901234567890")
  37. Decimal("1.2345E+12345678901234567892")
  38. >>> Decimal("1.33") + Decimal("1.27")
  39. Decimal("2.60")
  40. >>> Decimal("12.34") + Decimal("3.87") - Decimal("18.41")
  41. Decimal("-2.20")
  42. >>> dig = Decimal(1)
  43. >>> print dig / Decimal(3)
  44. 0.333333333
  45. >>> getcontext().prec = 18
  46. >>> print dig / Decimal(3)
  47. 0.333333333333333333
  48. >>> print dig.sqrt()
  49. 1
  50. >>> print Decimal(3).sqrt()
  51. 1.73205080756887729
  52. >>> print Decimal(3) ** 123
  53. 4.85192780976896427E+58
  54. >>> inf = Decimal(1) / Decimal(0)
  55. >>> print inf
  56. Infinity
  57. >>> neginf = Decimal(-1) / Decimal(0)
  58. >>> print neginf
  59. -Infinity
  60. >>> print neginf + inf
  61. NaN
  62. >>> print neginf * inf
  63. -Infinity
  64. >>> print dig / 0
  65. Infinity
  66. >>> getcontext().traps[DivisionByZero] = 1
  67. >>> print dig / 0
  68. Traceback (most recent call last):
  69.   ...
  70.   ...
  71.   ...
  72. DivisionByZero: x / 0
  73. >>> c = Context()
  74. >>> c.traps[InvalidOperation] = 0
  75. >>> print c.flags[InvalidOperation]
  76. 0
  77. >>> c.divide(Decimal(0), Decimal(0))
  78. Decimal("NaN")
  79. >>> c.traps[InvalidOperation] = 1
  80. >>> print c.flags[InvalidOperation]
  81. 1
  82. >>> c.flags[InvalidOperation] = 0
  83. >>> print c.flags[InvalidOperation]
  84. 0
  85. >>> print c.divide(Decimal(0), Decimal(0))
  86. Traceback (most recent call last):
  87.   ...
  88.   ...
  89.   ...
  90. InvalidOperation: 0 / 0
  91. >>> print c.flags[InvalidOperation]
  92. 1
  93. >>> c.flags[InvalidOperation] = 0
  94. >>> c.traps[InvalidOperation] = 0
  95. >>> print c.divide(Decimal(0), Decimal(0))
  96. NaN
  97. >>> print c.flags[InvalidOperation]
  98. 1
  99. >>>
  100. '''
  101. __all__ = [
  102.     'Decimal',
  103.     'Context',
  104.     'DefaultContext',
  105.     'BasicContext',
  106.     'ExtendedContext',
  107.     'DecimalException',
  108.     'Clamped',
  109.     'InvalidOperation',
  110.     'DivisionByZero',
  111.     'Inexact',
  112.     'Rounded',
  113.     'Subnormal',
  114.     'Overflow',
  115.     'Underflow',
  116.     'ROUND_DOWN',
  117.     'ROUND_HALF_UP',
  118.     'ROUND_HALF_EVEN',
  119.     'ROUND_CEILING',
  120.     'ROUND_FLOOR',
  121.     'ROUND_UP',
  122.     'ROUND_HALF_DOWN',
  123.     'setcontext',
  124.     'getcontext']
  125. import copy as _copy
  126. ROUND_DOWN = 'ROUND_DOWN'
  127. ROUND_HALF_UP = 'ROUND_HALF_UP'
  128. ROUND_HALF_EVEN = 'ROUND_HALF_EVEN'
  129. ROUND_CEILING = 'ROUND_CEILING'
  130. ROUND_FLOOR = 'ROUND_FLOOR'
  131. ROUND_UP = 'ROUND_UP'
  132. ROUND_HALF_DOWN = 'ROUND_HALF_DOWN'
  133. NEVER_ROUND = 'NEVER_ROUND'
  134. ALWAYS_ROUND = 'ALWAYS_ROUND'
  135.  
  136. class DecimalException(ArithmeticError):
  137.     """Base exception class.
  138.  
  139.     Used exceptions derive from this.
  140.     If an exception derives from another exception besides this (such as
  141.     Underflow (Inexact, Rounded, Subnormal) that indicates that it is only
  142.     called if the others are present.  This isn't actually used for
  143.     anything, though.
  144.  
  145.     handle  -- Called when context._raise_error is called and the
  146.                trap_enabler is set.  First argument is self, second is the
  147.                context.  More arguments can be given, those being after
  148.                the explanation in _raise_error (For example,
  149.                context._raise_error(NewError, '(-x)!', self._sign) would
  150.                call NewError().handle(context, self._sign).)
  151.  
  152.     To define a new exception, it should be sufficient to have it derive
  153.     from DecimalException.
  154.     """
  155.     
  156.     def handle(self, context, *args):
  157.         pass
  158.  
  159.  
  160.  
  161. class Clamped(DecimalException):
  162.     '''Exponent of a 0 changed to fit bounds.
  163.  
  164.     This occurs and signals clamped if the exponent of a result has been
  165.     altered in order to fit the constraints of a specific concrete
  166.     representation. This may occur when the exponent of a zero result would
  167.     be outside the bounds of a representation, or  when a large normal
  168.     number would have an encoded exponent that cannot be represented. In
  169.     this latter case, the exponent is reduced to fit and the corresponding
  170.     number of zero digits are appended to the coefficient ("fold-down").
  171.     '''
  172.     pass
  173.  
  174.  
  175. class InvalidOperation(DecimalException):
  176.     '''An invalid operation was performed.
  177.  
  178.     Various bad things cause this:
  179.  
  180.     Something creates a signaling NaN
  181.     -INF + INF
  182.      0 * (+-)INF
  183.      (+-)INF / (+-)INF
  184.     x % 0
  185.     (+-)INF % x
  186.     x._rescale( non-integer )
  187.     sqrt(-x) , x > 0
  188.     0 ** 0
  189.     x ** (non-integer)
  190.     x ** (+-)INF
  191.     An operand is invalid
  192.     '''
  193.     
  194.     def handle(self, context, *args):
  195.         if args:
  196.             if args[0] == 1:
  197.                 return Decimal((args[1]._sign, args[1]._int, 'n'))
  198.             
  199.         
  200.         return NaN
  201.  
  202.  
  203.  
  204. class ConversionSyntax(InvalidOperation):
  205.     '''Trying to convert badly formed string.
  206.  
  207.     This occurs and signals invalid-operation if an string is being
  208.     converted to a number and it does not conform to the numeric string
  209.     syntax. The result is [0,qNaN].
  210.     '''
  211.     
  212.     def handle(self, context, *args):
  213.         return (0, (0,), 'n')
  214.  
  215.  
  216.  
  217. class DivisionByZero(DecimalException, ZeroDivisionError):
  218.     '''Division by 0.
  219.  
  220.     This occurs and signals division-by-zero if division of a finite number
  221.     by zero was attempted (during a divide-integer or divide operation, or a
  222.     power operation with negative right-hand operand), and the dividend was
  223.     not zero.
  224.  
  225.     The result of the operation is [sign,inf], where sign is the exclusive
  226.     or of the signs of the operands for divide, or is 1 for an odd power of
  227.     -0, for power.
  228.     '''
  229.     
  230.     def handle(self, context, sign, double = None, *args):
  231.         if double is not None:
  232.             return (Infsign[sign],) * 2
  233.         
  234.         return Infsign[sign]
  235.  
  236.  
  237.  
  238. class DivisionImpossible(InvalidOperation):
  239.     '''Cannot perform the division adequately.
  240.  
  241.     This occurs and signals invalid-operation if the integer result of a
  242.     divide-integer or remainder operation had too many digits (would be
  243.     longer than precision). The result is [0,qNaN].
  244.     '''
  245.     
  246.     def handle(self, context, *args):
  247.         return (NaN, NaN)
  248.  
  249.  
  250.  
  251. class DivisionUndefined(InvalidOperation, ZeroDivisionError):
  252.     '''Undefined result of division.
  253.  
  254.     This occurs and signals invalid-operation if division by zero was
  255.     attempted (during a divide-integer, divide, or remainder operation), and
  256.     the dividend is also zero. The result is [0,qNaN].
  257.     '''
  258.     
  259.     def handle(self, context, tup = None, *args):
  260.         if tup is not None:
  261.             return (NaN, NaN)
  262.         
  263.         return NaN
  264.  
  265.  
  266.  
  267. class Inexact(DecimalException):
  268.     '''Had to round, losing information.
  269.  
  270.     This occurs and signals inexact whenever the result of an operation is
  271.     not exact (that is, it needed to be rounded and any discarded digits
  272.     were non-zero), or if an overflow or underflow condition occurs. The
  273.     result in all cases is unchanged.
  274.  
  275.     The inexact signal may be tested (or trapped) to determine if a given
  276.     operation (or sequence of operations) was inexact.
  277.     '''
  278.     pass
  279.  
  280.  
  281. class InvalidContext(InvalidOperation):
  282.     '''Invalid context.  Unknown rounding, for example.
  283.  
  284.     This occurs and signals invalid-operation if an invalid context was
  285.     detected during an operation. This can occur if contexts are not checked
  286.     on creation and either the precision exceeds the capability of the
  287.     underlying concrete representation or an unknown or unsupported rounding
  288.     was specified. These aspects of the context need only be checked when
  289.     the values are required to be used. The result is [0,qNaN].
  290.     '''
  291.     
  292.     def handle(self, context, *args):
  293.         return NaN
  294.  
  295.  
  296.  
  297. class Rounded(DecimalException):
  298.     '''Number got rounded (not  necessarily changed during rounding).
  299.  
  300.     This occurs and signals rounded whenever the result of an operation is
  301.     rounded (that is, some zero or non-zero digits were discarded from the
  302.     coefficient), or if an overflow or underflow condition occurs. The
  303.     result in all cases is unchanged.
  304.  
  305.     The rounded signal may be tested (or trapped) to determine if a given
  306.     operation (or sequence of operations) caused a loss of precision.
  307.     '''
  308.     pass
  309.  
  310.  
  311. class Subnormal(DecimalException):
  312.     '''Exponent < Emin before rounding.
  313.  
  314.     This occurs and signals subnormal whenever the result of a conversion or
  315.     operation is subnormal (that is, its adjusted exponent is less than
  316.     Emin, before any rounding). The result in all cases is unchanged.
  317.  
  318.     The subnormal signal may be tested (or trapped) to determine if a given
  319.     or operation (or sequence of operations) yielded a subnormal result.
  320.     '''
  321.     pass
  322.  
  323.  
  324. class Overflow(Inexact, Rounded):
  325.     '''Numerical overflow.
  326.  
  327.     This occurs and signals overflow if the adjusted exponent of a result
  328.     (from a conversion or from an operation that is not an attempt to divide
  329.     by zero), after rounding, would be greater than the largest value that
  330.     can be handled by the implementation (the value Emax).
  331.  
  332.     The result depends on the rounding mode:
  333.  
  334.     For round-half-up and round-half-even (and for round-half-down and
  335.     round-up, if implemented), the result of the operation is [sign,inf],
  336.     where sign is the sign of the intermediate result. For round-down, the
  337.     result is the largest finite number that can be represented in the
  338.     current precision, with the sign of the intermediate result. For
  339.     round-ceiling, the result is the same as for round-down if the sign of
  340.     the intermediate result is 1, or is [0,inf] otherwise. For round-floor,
  341.     the result is the same as for round-down if the sign of the intermediate
  342.     result is 0, or is [1,inf] otherwise. In all cases, Inexact and Rounded
  343.     will also be raised.
  344.    '''
  345.     
  346.     def handle(self, context, sign, *args):
  347.         if context.rounding in (ROUND_HALF_UP, ROUND_HALF_EVEN, ROUND_HALF_DOWN, ROUND_UP):
  348.             return Infsign[sign]
  349.         
  350.         if sign == 0:
  351.             if context.rounding == ROUND_CEILING:
  352.                 return Infsign[sign]
  353.             
  354.             return Decimal((sign, (9,) * context.prec, (context.Emax - context.prec) + 1))
  355.         
  356.         if sign == 1:
  357.             if context.rounding == ROUND_FLOOR:
  358.                 return Infsign[sign]
  359.             
  360.             return Decimal((sign, (9,) * context.prec, (context.Emax - context.prec) + 1))
  361.         
  362.  
  363.  
  364.  
  365. class Underflow(Inexact, Rounded, Subnormal):
  366.     '''Numerical underflow with result rounded to 0.
  367.  
  368.     This occurs and signals underflow if a result is inexact and the
  369.     adjusted exponent of the result would be smaller (more negative) than
  370.     the smallest value that can be handled by the implementation (the value
  371.     Emin). That is, the result is both inexact and subnormal.
  372.  
  373.     The result after an underflow will be a subnormal number rounded, if
  374.     necessary, so that its exponent is not less than Etiny. This may result
  375.     in 0 with the sign of the intermediate result and an exponent of Etiny.
  376.  
  377.     In all cases, Inexact, Rounded, and Subnormal will also be raised.
  378.     '''
  379.     pass
  380.  
  381. _signals = [
  382.     Clamped,
  383.     DivisionByZero,
  384.     Inexact,
  385.     Overflow,
  386.     Rounded,
  387.     Underflow,
  388.     InvalidOperation,
  389.     Subnormal]
  390. _condition_map = {
  391.     ConversionSyntax: InvalidOperation,
  392.     DivisionImpossible: InvalidOperation,
  393.     DivisionUndefined: InvalidOperation,
  394.     InvalidContext: InvalidOperation }
  395.  
  396. try:
  397.     import threading
  398. except ImportError:
  399.     import sys
  400.     
  401.     class MockThreading:
  402.         
  403.         def local(self, sys = sys):
  404.             return sys.modules[__name__]
  405.  
  406.  
  407.     threading = MockThreading()
  408.     del sys
  409.     del MockThreading
  410.  
  411.  
  412. try:
  413.     threading.local
  414. except AttributeError:
  415.     if hasattr(threading.currentThread(), '__decimal_context__'):
  416.         del threading.currentThread().__decimal_context__
  417.     
  418.     
  419.     def setcontext(context):
  420.         """Set this thread's context to context."""
  421.         if context in (DefaultContext, BasicContext, ExtendedContext):
  422.             context = context.copy()
  423.             context.clear_flags()
  424.         
  425.         threading.currentThread().__decimal_context__ = context
  426.  
  427.     
  428.     def getcontext():
  429.         """Returns this thread's context.
  430.  
  431.         If this thread does not yet have a context, returns
  432.         a new context and sets this thread's context.
  433.         New contexts are copies of DefaultContext.
  434.         """
  435.         
  436.         try:
  437.             return threading.currentThread().__decimal_context__
  438.         except AttributeError:
  439.             context = Context()
  440.             threading.currentThread().__decimal_context__ = context
  441.             return context
  442.  
  443.  
  444.  
  445. local = threading.local()
  446. if hasattr(local, '__decimal_context__'):
  447.     del local.__decimal_context__
  448.  
  449.  
  450. def getcontext(_local = local):
  451.     """Returns this thread's context.
  452.  
  453.         If this thread does not yet have a context, returns
  454.         a new context and sets this thread's context.
  455.         New contexts are copies of DefaultContext.
  456.         """
  457.     
  458.     try:
  459.         return _local.__decimal_context__
  460.     except AttributeError:
  461.         context = Context()
  462.         _local.__decimal_context__ = context
  463.         return context
  464.  
  465.  
  466.  
  467. def setcontext(context, _local = local):
  468.     """Set this thread's context to context."""
  469.     if context in (DefaultContext, BasicContext, ExtendedContext):
  470.         context = context.copy()
  471.         context.clear_flags()
  472.     
  473.     _local.__decimal_context__ = context
  474.  
  475. del threading
  476. del local
  477.  
  478. class Decimal(object):
  479.     '''Floating point class for decimal arithmetic.'''
  480.     __slots__ = ('_exp', '_int', '_sign', '_is_special')
  481.     
  482.     def __new__(cls, value = '0', context = None):
  483.         '''Create a decimal point instance.
  484.  
  485.         >>> Decimal(\'3.14\')              # string input
  486.         Decimal("3.14")
  487.         >>> Decimal((0, (3, 1, 4), -2))  # tuple input (sign, digit_tuple, exponent)
  488.         Decimal("3.14")
  489.         >>> Decimal(314)                 # int or long
  490.         Decimal("314")
  491.         >>> Decimal(Decimal(314))        # another decimal instance
  492.         Decimal("314")
  493.         '''
  494.         self = object.__new__(cls)
  495.         self._is_special = False
  496.         if isinstance(value, _WorkRep):
  497.             self._sign = value.sign
  498.             self._int = tuple(map(int, str(value.int)))
  499.             self._exp = int(value.exp)
  500.             return self
  501.         
  502.         if isinstance(value, Decimal):
  503.             self._exp = value._exp
  504.             self._sign = value._sign
  505.             self._int = value._int
  506.             self._is_special = value._is_special
  507.             return self
  508.         
  509.         if isinstance(value, (int, long)):
  510.             if value >= 0:
  511.                 self._sign = 0
  512.             else:
  513.                 self._sign = 1
  514.             self._exp = 0
  515.             self._int = tuple(map(int, str(abs(value))))
  516.             return self
  517.         
  518.         if isinstance(value, (list, tuple)):
  519.             if len(value) != 3:
  520.                 raise ValueError, 'Invalid arguments'
  521.             
  522.             if value[0] not in (0, 1):
  523.                 raise ValueError, 'Invalid sign'
  524.             
  525.             for digit in value[1]:
  526.                 if not isinstance(digit, (int, long)) or digit < 0:
  527.                     raise ValueError, 'The second value in the tuple must be composed of non negative integer elements.'
  528.                     continue
  529.             
  530.             self._sign = value[0]
  531.             self._int = tuple(value[1])
  532.             if value[2] in ('F', 'n', 'N'):
  533.                 self._exp = value[2]
  534.                 self._is_special = True
  535.             else:
  536.                 self._exp = int(value[2])
  537.             return self
  538.         
  539.         if isinstance(value, float):
  540.             raise TypeError('Cannot convert float to Decimal.  ' + 'First convert the float to a string')
  541.         
  542.         if context is None:
  543.             context = getcontext()
  544.         
  545.         if isinstance(value, basestring):
  546.             if _isinfinity(value):
  547.                 self._exp = 'F'
  548.                 self._int = (0,)
  549.                 self._is_special = True
  550.                 if _isinfinity(value) == 1:
  551.                     self._sign = 0
  552.                 else:
  553.                     self._sign = 1
  554.                 return self
  555.             
  556.             if _isnan(value):
  557.                 (sig, sign, diag) = _isnan(value)
  558.                 self._is_special = True
  559.                 if len(diag) > context.prec:
  560.                     (self._sign, self._int, self._exp) = context._raise_error(ConversionSyntax)
  561.                     return self
  562.                 
  563.                 if sig == 1:
  564.                     self._exp = 'n'
  565.                 else:
  566.                     self._exp = 'N'
  567.                 self._sign = sign
  568.                 self._int = tuple(map(int, diag))
  569.                 return self
  570.             
  571.             
  572.             try:
  573.                 (self._sign, self._int, self._exp) = _string2exact(value)
  574.             except ValueError:
  575.                 self._is_special = True
  576.                 (self._sign, self._int, self._exp) = context._raise_error(ConversionSyntax)
  577.  
  578.             return self
  579.         
  580.         raise TypeError('Cannot convert %r to Decimal' % value)
  581.  
  582.     
  583.     def _isnan(self):
  584.         '''Returns whether the number is not actually one.
  585.  
  586.         0 if a number
  587.         1 if NaN
  588.         2 if sNaN
  589.         '''
  590.         if self._is_special:
  591.             exp = self._exp
  592.             if exp == 'n':
  593.                 return 1
  594.             elif exp == 'N':
  595.                 return 2
  596.             
  597.         
  598.         return 0
  599.  
  600.     
  601.     def _isinfinity(self):
  602.         '''Returns whether the number is infinite
  603.  
  604.         0 if finite or not a number
  605.         1 if +INF
  606.         -1 if -INF
  607.         '''
  608.         if self._exp == 'F':
  609.             if self._sign:
  610.                 return -1
  611.             
  612.             return 1
  613.         
  614.         return 0
  615.  
  616.     
  617.     def _check_nans(self, other = None, context = None):
  618.         '''Returns whether the number is not actually one.
  619.  
  620.         if self, other are sNaN, signal
  621.         if self, other are NaN return nan
  622.         return 0
  623.  
  624.         Done before operations.
  625.         '''
  626.         self_is_nan = self._isnan()
  627.         if other is None:
  628.             other_is_nan = False
  629.         else:
  630.             other_is_nan = other._isnan()
  631.         if self_is_nan or other_is_nan:
  632.             if context is None:
  633.                 context = getcontext()
  634.             
  635.             if self_is_nan == 2:
  636.                 return context._raise_error(InvalidOperation, 'sNaN', 1, self)
  637.             
  638.             if other_is_nan == 2:
  639.                 return context._raise_error(InvalidOperation, 'sNaN', 1, other)
  640.             
  641.             if self_is_nan:
  642.                 return self
  643.             
  644.             return other
  645.         
  646.         return 0
  647.  
  648.     
  649.     def __nonzero__(self):
  650.         '''Is the number non-zero?
  651.  
  652.         0 if self == 0
  653.         1 if self != 0
  654.         '''
  655.         if self._is_special:
  656.             return 1
  657.         
  658.         return sum(self._int) != 0
  659.  
  660.     
  661.     def __cmp__(self, other, context = None):
  662.         other = _convert_other(other)
  663.         if other is NotImplemented:
  664.             return other
  665.         
  666.         if self._is_special or other._is_special:
  667.             ans = self._check_nans(other, context)
  668.             if ans:
  669.                 return 1
  670.             
  671.             return cmp(self._isinfinity(), other._isinfinity())
  672.         
  673.         if not self and not other:
  674.             return 0
  675.         
  676.         if other._sign < self._sign:
  677.             return -1
  678.         
  679.         if self._sign < other._sign:
  680.             return 1
  681.         
  682.         self_adjusted = self.adjusted()
  683.         other_adjusted = other.adjusted()
  684.         if self_adjusted == other_adjusted and self._int + (0,) * (self._exp - other._exp) == other._int + (0,) * (other._exp - self._exp):
  685.             return 0
  686.         elif self_adjusted > other_adjusted and self._int[0] != 0:
  687.             return -1 ** self._sign
  688.         elif self_adjusted < other_adjusted and other._int[0] != 0:
  689.             return --1 ** self._sign
  690.         
  691.         if context is None:
  692.             context = getcontext()
  693.         
  694.         context = context._shallow_copy()
  695.         rounding = context._set_rounding(ROUND_UP)
  696.         flags = context._ignore_all_flags()
  697.         res = self.__sub__(other, context = context)
  698.         context._regard_flags(*flags)
  699.         context.rounding = rounding
  700.         if not res:
  701.             return 0
  702.         elif res._sign:
  703.             return -1
  704.         
  705.         return 1
  706.  
  707.     
  708.     def __eq__(self, other):
  709.         if not isinstance(other, (Decimal, int, long)):
  710.             return NotImplemented
  711.         
  712.         return self.__cmp__(other) == 0
  713.  
  714.     
  715.     def __ne__(self, other):
  716.         if not isinstance(other, (Decimal, int, long)):
  717.             return NotImplemented
  718.         
  719.         return self.__cmp__(other) != 0
  720.  
  721.     
  722.     def compare(self, other, context = None):
  723.         '''Compares one to another.
  724.  
  725.         -1 => a < b
  726.         0  => a = b
  727.         1  => a > b
  728.         NaN => one is NaN
  729.         Like __cmp__, but returns Decimal instances.
  730.         '''
  731.         other = _convert_other(other)
  732.         if other is NotImplemented:
  733.             return other
  734.         
  735.         if (self._is_special or other) and other._is_special:
  736.             ans = self._check_nans(other, context)
  737.             if ans:
  738.                 return ans
  739.             
  740.         
  741.         return Decimal(self.__cmp__(other, context))
  742.  
  743.     
  744.     def __hash__(self):
  745.         '''x.__hash__() <==> hash(x)'''
  746.         if self._is_special:
  747.             if self._isnan():
  748.                 raise TypeError('Cannot hash a NaN value.')
  749.             
  750.             return hash(str(self))
  751.         
  752.         i = int(self)
  753.         if self == Decimal(i):
  754.             return hash(i)
  755.         
  756.         if not self.__nonzero__():
  757.             raise AssertionError
  758.         return hash(str(self.normalize()))
  759.  
  760.     
  761.     def as_tuple(self):
  762.         '''Represents the number as a triple tuple.
  763.  
  764.         To show the internals exactly as they are.
  765.         '''
  766.         return (self._sign, self._int, self._exp)
  767.  
  768.     
  769.     def __repr__(self):
  770.         '''Represents the number as an instance of Decimal.'''
  771.         return 'Decimal("%s")' % str(self)
  772.  
  773.     
  774.     def __str__(self, eng = 0, context = None):
  775.         '''Return string representation of the number in scientific notation.
  776.  
  777.         Captures all of the information in the underlying representation.
  778.         '''
  779.         if self._is_special:
  780.             if self._isnan():
  781.                 minus = '-' * self._sign
  782.                 if self._int == (0,):
  783.                     info = ''
  784.                 else:
  785.                     info = ''.join(map(str, self._int))
  786.                 if self._isnan() == 2:
  787.                     return minus + 'sNaN' + info
  788.                 
  789.                 return minus + 'NaN' + info
  790.             
  791.             if self._isinfinity():
  792.                 minus = '-' * self._sign
  793.                 return minus + 'Infinity'
  794.             
  795.         
  796.         if context is None:
  797.             context = getcontext()
  798.         
  799.         tmp = map(str, self._int)
  800.         numdigits = len(self._int)
  801.         leftdigits = self._exp + numdigits
  802.         if eng and not self:
  803.             if self._exp < 0 and self._exp >= -6:
  804.                 s = '-' * self._sign + '0.' + '0' * abs(self._exp)
  805.                 return s
  806.             
  807.             exp = ((self._exp - 1) // 3 + 1) * 3
  808.             if exp != self._exp:
  809.                 s = '0.' + '0' * (exp - self._exp)
  810.             else:
  811.                 s = '0'
  812.             if exp != 0:
  813.                 if context.capitals:
  814.                     s += 'E'
  815.                 else:
  816.                     s += 'e'
  817.                 if exp > 0:
  818.                     s += '+'
  819.                 
  820.                 s += str(exp)
  821.             
  822.             s = '-' * self._sign + s
  823.             return s
  824.         
  825.         if eng:
  826.             dotplace = (leftdigits - 1) % 3 + 1
  827.             adjexp = leftdigits - 1 - (leftdigits - 1) % 3
  828.         else:
  829.             adjexp = leftdigits - 1
  830.             dotplace = 1
  831.         if self._exp == 0:
  832.             pass
  833.         elif self._exp < 0 and adjexp >= 0:
  834.             tmp.insert(leftdigits, '.')
  835.         elif self._exp < 0 and adjexp >= -6:
  836.             tmp[0:0] = [
  837.                 '0'] * int(-leftdigits)
  838.             tmp.insert(0, '0.')
  839.         elif numdigits > dotplace:
  840.             tmp.insert(dotplace, '.')
  841.         elif numdigits < dotplace:
  842.             tmp.extend([
  843.                 '0'] * (dotplace - numdigits))
  844.         
  845.         if adjexp:
  846.             if not context.capitals:
  847.                 tmp.append('e')
  848.             else:
  849.                 tmp.append('E')
  850.                 if adjexp > 0:
  851.                     tmp.append('+')
  852.                 
  853.             tmp.append(str(adjexp))
  854.         
  855.         if eng:
  856.             while tmp[0:1] == [
  857.                 '0']:
  858.                 tmp[0:1] = []
  859.             if len(tmp) == 0 and tmp[0] == '.' or tmp[0].lower() == 'e':
  860.                 tmp[0:0] = [
  861.                     '0']
  862.             
  863.         
  864.         if self._sign:
  865.             tmp.insert(0, '-')
  866.         
  867.         return ''.join(tmp)
  868.  
  869.     
  870.     def to_eng_string(self, context = None):
  871.         '''Convert to engineering-type string.
  872.  
  873.         Engineering notation has an exponent which is a multiple of 3, so there
  874.         are up to 3 digits left of the decimal place.
  875.  
  876.         Same rules for when in exponential and when as a value as in __str__.
  877.         '''
  878.         return self.__str__(eng = 1, context = context)
  879.  
  880.     
  881.     def __neg__(self, context = None):
  882.         '''Returns a copy with the sign switched.
  883.  
  884.         Rounds, if it has reason.
  885.         '''
  886.         if self._is_special:
  887.             ans = self._check_nans(context = context)
  888.             if ans:
  889.                 return ans
  890.             
  891.         
  892.         if not self:
  893.             sign = 0
  894.         elif self._sign:
  895.             sign = 0
  896.         else:
  897.             sign = 1
  898.         if context is None:
  899.             context = getcontext()
  900.         
  901.         if context._rounding_decision == ALWAYS_ROUND:
  902.             return Decimal((sign, self._int, self._exp))._fix(context)
  903.         
  904.         return Decimal((sign, self._int, self._exp))
  905.  
  906.     
  907.     def __pos__(self, context = None):
  908.         '''Returns a copy, unless it is a sNaN.
  909.  
  910.         Rounds the number (if more then precision digits)
  911.         '''
  912.         if self._is_special:
  913.             ans = self._check_nans(context = context)
  914.             if ans:
  915.                 return ans
  916.             
  917.         
  918.         sign = self._sign
  919.         if not self:
  920.             sign = 0
  921.         
  922.         if context is None:
  923.             context = getcontext()
  924.         
  925.         if context._rounding_decision == ALWAYS_ROUND:
  926.             ans = self._fix(context)
  927.         else:
  928.             ans = Decimal(self)
  929.         ans._sign = sign
  930.         return ans
  931.  
  932.     
  933.     def __abs__(self, round = 1, context = None):
  934.         '''Returns the absolute value of self.
  935.  
  936.         If the second argument is 0, do not round.
  937.         '''
  938.         if self._is_special:
  939.             ans = self._check_nans(context = context)
  940.             if ans:
  941.                 return ans
  942.             
  943.         
  944.         if not round:
  945.             if context is None:
  946.                 context = getcontext()
  947.             
  948.             context = context._shallow_copy()
  949.             context._set_rounding_decision(NEVER_ROUND)
  950.         
  951.         if self._sign:
  952.             ans = self.__neg__(context = context)
  953.         else:
  954.             ans = self.__pos__(context = context)
  955.         return ans
  956.  
  957.     
  958.     def __add__(self, other, context = None):
  959.         '''Returns self + other.
  960.  
  961.         -INF + INF (or the reverse) cause InvalidOperation errors.
  962.         '''
  963.         other = _convert_other(other)
  964.         if other is NotImplemented:
  965.             return other
  966.         
  967.         if context is None:
  968.             context = getcontext()
  969.         
  970.         if self._is_special or other._is_special:
  971.             ans = self._check_nans(other, context)
  972.             if ans:
  973.                 return ans
  974.             
  975.             if self._isinfinity():
  976.                 if self._sign != other._sign and other._isinfinity():
  977.                     return context._raise_error(InvalidOperation, '-INF + INF')
  978.                 
  979.                 return Decimal(self)
  980.             
  981.             if other._isinfinity():
  982.                 return Decimal(other)
  983.             
  984.         
  985.         shouldround = context._rounding_decision == ALWAYS_ROUND
  986.         exp = min(self._exp, other._exp)
  987.         negativezero = 0
  988.         if context.rounding == ROUND_FLOOR and self._sign != other._sign:
  989.             negativezero = 1
  990.         
  991.         if not self and not other:
  992.             sign = min(self._sign, other._sign)
  993.             if negativezero:
  994.                 sign = 1
  995.             
  996.             return Decimal((sign, (0,), exp))
  997.         
  998.         if not self:
  999.             exp = max(exp, other._exp - context.prec - 1)
  1000.             ans = other._rescale(exp, watchexp = 0, context = context)
  1001.             if shouldround:
  1002.                 ans = ans._fix(context)
  1003.             
  1004.             return ans
  1005.         
  1006.         if not other:
  1007.             exp = max(exp, self._exp - context.prec - 1)
  1008.             ans = self._rescale(exp, watchexp = 0, context = context)
  1009.             if shouldround:
  1010.                 ans = ans._fix(context)
  1011.             
  1012.             return ans
  1013.         
  1014.         op1 = _WorkRep(self)
  1015.         op2 = _WorkRep(other)
  1016.         (op1, op2) = _normalize(op1, op2, shouldround, context.prec)
  1017.         result = _WorkRep()
  1018.         if op1.sign != op2.sign:
  1019.             if op1.int == op2.int:
  1020.                 if exp < context.Etiny():
  1021.                     exp = context.Etiny()
  1022.                     context._raise_error(Clamped)
  1023.                 
  1024.                 return Decimal((negativezero, (0,), exp))
  1025.             
  1026.             if op1.int < op2.int:
  1027.                 op1 = op2
  1028.                 op2 = op1
  1029.             
  1030.             if op1.sign == 1:
  1031.                 result.sign = 1
  1032.                 op1.sign = op2.sign
  1033.                 op2.sign = op1.sign
  1034.             else:
  1035.                 result.sign = 0
  1036.         elif op1.sign == 1:
  1037.             result.sign = 1
  1038.             (op1.sign, op2.sign) = (0, 0)
  1039.         else:
  1040.             result.sign = 0
  1041.         if op2.sign == 0:
  1042.             result.int = op1.int + op2.int
  1043.         else:
  1044.             result.int = op1.int - op2.int
  1045.         result.exp = op1.exp
  1046.         ans = Decimal(result)
  1047.         if shouldround:
  1048.             ans = ans._fix(context)
  1049.         
  1050.         return ans
  1051.  
  1052.     __radd__ = __add__
  1053.     
  1054.     def __sub__(self, other, context = None):
  1055.         '''Return self + (-other)'''
  1056.         other = _convert_other(other)
  1057.         if other is NotImplemented:
  1058.             return other
  1059.         
  1060.         if self._is_special or other._is_special:
  1061.             ans = self._check_nans(other, context = context)
  1062.             if ans:
  1063.                 return ans
  1064.             
  1065.         
  1066.         tmp = Decimal(other)
  1067.         tmp._sign = 1 - tmp._sign
  1068.         return self.__add__(tmp, context = context)
  1069.  
  1070.     
  1071.     def __rsub__(self, other, context = None):
  1072.         '''Return other + (-self)'''
  1073.         other = _convert_other(other)
  1074.         if other is NotImplemented:
  1075.             return other
  1076.         
  1077.         tmp = Decimal(self)
  1078.         tmp._sign = 1 - tmp._sign
  1079.         return other.__add__(tmp, context = context)
  1080.  
  1081.     
  1082.     def _increment(self, round = 1, context = None):
  1083.         """Special case of add, adding 1eExponent
  1084.  
  1085.         Since it is common, (rounding, for example) this adds
  1086.         (sign)*one E self._exp to the number more efficiently than add.
  1087.  
  1088.         For example:
  1089.         Decimal('5.624e10')._increment() == Decimal('5.625e10')
  1090.         """
  1091.         if self._is_special:
  1092.             ans = self._check_nans(context = context)
  1093.             if ans:
  1094.                 return ans
  1095.             
  1096.             return Decimal(self)
  1097.         
  1098.         L = list(self._int)
  1099.         L[-1] += 1
  1100.         spot = len(L) - 1
  1101.         while L[spot] == 10:
  1102.             L[spot] = 0
  1103.             if spot == 0:
  1104.                 L[0:0] = [
  1105.                     1]
  1106.                 break
  1107.             
  1108.             L[spot - 1] += 1
  1109.             spot -= 1
  1110.         ans = Decimal((self._sign, L, self._exp))
  1111.         if context is None:
  1112.             context = getcontext()
  1113.         
  1114.         if round and context._rounding_decision == ALWAYS_ROUND:
  1115.             ans = ans._fix(context)
  1116.         
  1117.         return ans
  1118.  
  1119.     
  1120.     def __mul__(self, other, context = None):
  1121.         '''Return self * other.
  1122.  
  1123.         (+-) INF * 0 (or its reverse) raise InvalidOperation.
  1124.         '''
  1125.         other = _convert_other(other)
  1126.         if other is NotImplemented:
  1127.             return other
  1128.         
  1129.         if context is None:
  1130.             context = getcontext()
  1131.         
  1132.         resultsign = self._sign ^ other._sign
  1133.         if self._is_special or other._is_special:
  1134.             ans = self._check_nans(other, context)
  1135.             if ans:
  1136.                 return ans
  1137.             
  1138.             if self._isinfinity():
  1139.                 if not other:
  1140.                     return context._raise_error(InvalidOperation, '(+-)INF * 0')
  1141.                 
  1142.                 return Infsign[resultsign]
  1143.             
  1144.             if other._isinfinity():
  1145.                 if not self:
  1146.                     return context._raise_error(InvalidOperation, '0 * (+-)INF')
  1147.                 
  1148.                 return Infsign[resultsign]
  1149.             
  1150.         
  1151.         resultexp = self._exp + other._exp
  1152.         shouldround = context._rounding_decision == ALWAYS_ROUND
  1153.         if not self or not other:
  1154.             ans = Decimal((resultsign, (0,), resultexp))
  1155.             if shouldround:
  1156.                 ans = ans._fix(context)
  1157.             
  1158.             return ans
  1159.         
  1160.         if self._int == (1,):
  1161.             ans = Decimal((resultsign, other._int, resultexp))
  1162.             if shouldround:
  1163.                 ans = ans._fix(context)
  1164.             
  1165.             return ans
  1166.         
  1167.         if other._int == (1,):
  1168.             ans = Decimal((resultsign, self._int, resultexp))
  1169.             if shouldround:
  1170.                 ans = ans._fix(context)
  1171.             
  1172.             return ans
  1173.         
  1174.         op1 = _WorkRep(self)
  1175.         op2 = _WorkRep(other)
  1176.         ans = Decimal((resultsign, map(int, str(op1.int * op2.int)), resultexp))
  1177.         if shouldround:
  1178.             ans = ans._fix(context)
  1179.         
  1180.         return ans
  1181.  
  1182.     __rmul__ = __mul__
  1183.     
  1184.     def __div__(self, other, context = None):
  1185.         '''Return self / other.'''
  1186.         return self._divide(other, context = context)
  1187.  
  1188.     __truediv__ = __div__
  1189.     
  1190.     def _divide(self, other, divmod = 0, context = None):
  1191.         '''Return a / b, to context.prec precision.
  1192.  
  1193.         divmod:
  1194.         0 => true division
  1195.         1 => (a //b, a%b)
  1196.         2 => a //b
  1197.         3 => a%b
  1198.  
  1199.         Actually, if divmod is 2 or 3 a tuple is returned, but errors for
  1200.         computing the other value are not raised.
  1201.         '''
  1202.         other = _convert_other(other)
  1203.         if other is NotImplemented:
  1204.             if divmod in (0, 1):
  1205.                 return NotImplemented
  1206.             
  1207.             return (NotImplemented, NotImplemented)
  1208.         
  1209.         if context is None:
  1210.             context = getcontext()
  1211.         
  1212.         sign = self._sign ^ other._sign
  1213.         if self._is_special or other._is_special:
  1214.             ans = self._check_nans(other, context)
  1215.             if ans:
  1216.                 if divmod:
  1217.                     return (ans, ans)
  1218.                 
  1219.                 return ans
  1220.             
  1221.             if self._isinfinity() and other._isinfinity():
  1222.                 if divmod:
  1223.                     return (context._raise_error(InvalidOperation, '(+-)INF // (+-)INF'), context._raise_error(InvalidOperation, '(+-)INF % (+-)INF'))
  1224.                 
  1225.                 return context._raise_error(InvalidOperation, '(+-)INF/(+-)INF')
  1226.             
  1227.             if self._isinfinity():
  1228.                 if divmod == 1:
  1229.                     return (Infsign[sign], context._raise_error(InvalidOperation, 'INF % x'))
  1230.                 elif divmod == 2:
  1231.                     return (Infsign[sign], NaN)
  1232.                 elif divmod == 3:
  1233.                     return (Infsign[sign], context._raise_error(InvalidOperation, 'INF % x'))
  1234.                 
  1235.                 return Infsign[sign]
  1236.             
  1237.             if other._isinfinity():
  1238.                 if divmod:
  1239.                     return (Decimal((sign, (0,), 0)), Decimal(self))
  1240.                 
  1241.                 context._raise_error(Clamped, 'Division by infinity')
  1242.                 return Decimal((sign, (0,), context.Etiny()))
  1243.             
  1244.         
  1245.         if not self and not other:
  1246.             if divmod:
  1247.                 return context._raise_error(DivisionUndefined, '0 / 0', 1)
  1248.             
  1249.             return context._raise_error(DivisionUndefined, '0 / 0')
  1250.         
  1251.         if not self:
  1252.             if divmod:
  1253.                 otherside = Decimal(self)
  1254.                 otherside._exp = min(self._exp, other._exp)
  1255.                 return (Decimal((sign, (0,), 0)), otherside)
  1256.             
  1257.             exp = self._exp - other._exp
  1258.             if exp < context.Etiny():
  1259.                 exp = context.Etiny()
  1260.                 context._raise_error(Clamped, '0e-x / y')
  1261.             
  1262.             if exp > context.Emax:
  1263.                 exp = context.Emax
  1264.                 context._raise_error(Clamped, '0e+x / y')
  1265.             
  1266.             return Decimal((sign, (0,), exp))
  1267.         
  1268.         if not other:
  1269.             if divmod:
  1270.                 return context._raise_error(DivisionByZero, 'divmod(x,0)', sign, 1)
  1271.             
  1272.             return context._raise_error(DivisionByZero, 'x / 0', sign)
  1273.         
  1274.         shouldround = context._rounding_decision == ALWAYS_ROUND
  1275.         if divmod and self.__abs__(0, context) < other.__abs__(0, context):
  1276.             if divmod == 1 or divmod == 3:
  1277.                 exp = min(self._exp, other._exp)
  1278.                 ans2 = self._rescale(exp, context = context, watchexp = 0)
  1279.                 if shouldround:
  1280.                     ans2 = ans2._fix(context)
  1281.                 
  1282.                 return (Decimal((sign, (0,), 0)), ans2)
  1283.             elif divmod == 2:
  1284.                 return (Decimal((sign, (0,), 0)), Decimal(self))
  1285.             
  1286.         
  1287.         op1 = _WorkRep(self)
  1288.         op2 = _WorkRep(other)
  1289.         (op1, op2, adjust) = _adjust_coefficients(op1, op2)
  1290.         res = _WorkRep((sign, 0, op1.exp - op2.exp))
  1291.         if divmod and res.exp > context.prec + 1:
  1292.             return context._raise_error(DivisionImpossible)
  1293.         
  1294.         prec_limit = 10 ** context.prec
  1295.         while None:
  1296.             while op2.int <= op1.int:
  1297.                 res.int += 1
  1298.                 op1.int -= op2.int
  1299.                 continue
  1300.                 op1
  1301.             if op1.int == 0 and adjust >= 0 and not divmod:
  1302.                 break
  1303.             
  1304.             if res.int >= prec_limit and shouldround:
  1305.                 if divmod:
  1306.                     return context._raise_error(DivisionImpossible)
  1307.                 
  1308.                 shouldround = 1
  1309.                 break
  1310.             
  1311.             res.int *= 10
  1312.             res.exp -= 1
  1313.             adjust += 1
  1314.             op1.int *= 10
  1315.             op1.exp -= 1
  1316.             if res.exp == 0 and divmod and op2.int > op1.int:
  1317.                 otherside = Decimal(op1)
  1318.                 frozen = context._ignore_all_flags()
  1319.                 exp = min(self._exp, other._exp)
  1320.                 otherside = otherside._rescale(exp, context = context)
  1321.                 context._regard_flags(*frozen)
  1322.                 return (Decimal(res), otherside)
  1323.                 continue
  1324.             continue
  1325.             res
  1326.         ans = Decimal(res)
  1327.         if shouldround:
  1328.             ans = ans._fix(context)
  1329.         
  1330.         return ans
  1331.  
  1332.     
  1333.     def __rdiv__(self, other, context = None):
  1334.         '''Swaps self/other and returns __div__.'''
  1335.         other = _convert_other(other)
  1336.         if other is NotImplemented:
  1337.             return other
  1338.         
  1339.         return other.__div__(self, context = context)
  1340.  
  1341.     __rtruediv__ = __rdiv__
  1342.     
  1343.     def __divmod__(self, other, context = None):
  1344.         '''
  1345.         (self // other, self % other)
  1346.         '''
  1347.         return self._divide(other, 1, context)
  1348.  
  1349.     
  1350.     def __rdivmod__(self, other, context = None):
  1351.         '''Swaps self/other and returns __divmod__.'''
  1352.         other = _convert_other(other)
  1353.         if other is NotImplemented:
  1354.             return other
  1355.         
  1356.         return other.__divmod__(self, context = context)
  1357.  
  1358.     
  1359.     def __mod__(self, other, context = None):
  1360.         '''
  1361.         self % other
  1362.         '''
  1363.         other = _convert_other(other)
  1364.         if other is NotImplemented:
  1365.             return other
  1366.         
  1367.         if self._is_special or other._is_special:
  1368.             ans = self._check_nans(other, context)
  1369.             if ans:
  1370.                 return ans
  1371.             
  1372.         
  1373.         if self and not other:
  1374.             return context._raise_error(InvalidOperation, 'x % 0')
  1375.         
  1376.         return self._divide(other, 3, context)[1]
  1377.  
  1378.     
  1379.     def __rmod__(self, other, context = None):
  1380.         '''Swaps self/other and returns __mod__.'''
  1381.         other = _convert_other(other)
  1382.         if other is NotImplemented:
  1383.             return other
  1384.         
  1385.         return other.__mod__(self, context = context)
  1386.  
  1387.     
  1388.     def remainder_near(self, other, context = None):
  1389.         '''
  1390.         Remainder nearest to 0-  abs(remainder-near) <= other/2
  1391.         '''
  1392.         other = _convert_other(other)
  1393.         if other is NotImplemented:
  1394.             return other
  1395.         
  1396.         if self._is_special or other._is_special:
  1397.             ans = self._check_nans(other, context)
  1398.             if ans:
  1399.                 return ans
  1400.             
  1401.         
  1402.         if self and not other:
  1403.             return context._raise_error(InvalidOperation, 'x % 0')
  1404.         
  1405.         if context is None:
  1406.             context = getcontext()
  1407.         
  1408.         context = context._shallow_copy()
  1409.         flags = context._ignore_flags(Rounded, Inexact)
  1410.         (side, r) = self.__divmod__(other, context = context)
  1411.         if r._isnan():
  1412.             context._regard_flags(*flags)
  1413.             return r
  1414.         
  1415.         context = context._shallow_copy()
  1416.         rounding = context._set_rounding_decision(NEVER_ROUND)
  1417.         if other._sign:
  1418.             comparison = other.__div__(Decimal(-2), context = context)
  1419.         else:
  1420.             comparison = other.__div__(Decimal(2), context = context)
  1421.         context._set_rounding_decision(rounding)
  1422.         context._regard_flags(*flags)
  1423.         s1 = r._sign
  1424.         s2 = comparison._sign
  1425.         (r._sign, comparison._sign) = (0, 0)
  1426.         if r < comparison:
  1427.             r._sign = s1
  1428.             comparison._sign = s2
  1429.             self.__divmod__(other, context = context)
  1430.             return r._fix(context)
  1431.         
  1432.         r._sign = s1
  1433.         comparison._sign = s2
  1434.         rounding = context._set_rounding_decision(NEVER_ROUND)
  1435.         (side, r) = self.__divmod__(other, context = context)
  1436.         context._set_rounding_decision(rounding)
  1437.         if r._isnan():
  1438.             return r
  1439.         
  1440.         decrease = not side._iseven()
  1441.         rounding = context._set_rounding_decision(NEVER_ROUND)
  1442.         side = side.__abs__(context = context)
  1443.         context._set_rounding_decision(rounding)
  1444.         s1 = r._sign
  1445.         s2 = comparison._sign
  1446.         (r._sign, comparison._sign) = (0, 0)
  1447.         return r._fix(context)
  1448.  
  1449.     
  1450.     def __floordiv__(self, other, context = None):
  1451.         '''self // other'''
  1452.         return self._divide(other, 2, context)[0]
  1453.  
  1454.     
  1455.     def __rfloordiv__(self, other, context = None):
  1456.         '''Swaps self/other and returns __floordiv__.'''
  1457.         other = _convert_other(other)
  1458.         if other is NotImplemented:
  1459.             return other
  1460.         
  1461.         return other.__floordiv__(self, context = context)
  1462.  
  1463.     
  1464.     def __float__(self):
  1465.         '''Float representation.'''
  1466.         return float(str(self))
  1467.  
  1468.     
  1469.     def __int__(self):
  1470.         '''Converts self to an int, truncating if necessary.'''
  1471.         if self._is_special:
  1472.             if self._isnan():
  1473.                 context = getcontext()
  1474.                 return context._raise_error(InvalidContext)
  1475.             elif self._isinfinity():
  1476.                 raise OverflowError, 'Cannot convert infinity to long'
  1477.             
  1478.         
  1479.         if self._exp >= 0:
  1480.             s = ''.join(map(str, self._int)) + '0' * self._exp
  1481.         else:
  1482.             s = ''.join(map(str, self._int))[:self._exp]
  1483.         if s == '':
  1484.             s = '0'
  1485.         
  1486.         sign = '-' * self._sign
  1487.         return int(sign + s)
  1488.  
  1489.     
  1490.     def __long__(self):
  1491.         '''Converts to a long.
  1492.  
  1493.         Equivalent to long(int(self))
  1494.         '''
  1495.         return long(self.__int__())
  1496.  
  1497.     
  1498.     def _fix(self, context):
  1499.         '''Round if it is necessary to keep self within prec precision.
  1500.  
  1501.         Rounds and fixes the exponent.  Does not raise on a sNaN.
  1502.  
  1503.         Arguments:
  1504.         self - Decimal instance
  1505.         context - context used.
  1506.         '''
  1507.         if self._is_special:
  1508.             return self
  1509.         
  1510.         if context is None:
  1511.             context = getcontext()
  1512.         
  1513.         prec = context.prec
  1514.         ans = self._fixexponents(context)
  1515.         if len(ans._int) > prec:
  1516.             ans = ans._round(prec, context = context)
  1517.             ans = ans._fixexponents(context)
  1518.         
  1519.         return ans
  1520.  
  1521.     
  1522.     def _fixexponents(self, context):
  1523.         '''Fix the exponents and return a copy with the exponent in bounds.
  1524.         Only call if known to not be a special value.
  1525.         '''
  1526.         folddown = context._clamp
  1527.         Emin = context.Emin
  1528.         ans = self
  1529.         ans_adjusted = ans.adjusted()
  1530.         if ans_adjusted < Emin:
  1531.             Etiny = context.Etiny()
  1532.             if ans._exp < Etiny:
  1533.                 if not ans:
  1534.                     ans = Decimal(self)
  1535.                     ans._exp = Etiny
  1536.                     context._raise_error(Clamped)
  1537.                     return ans
  1538.                 
  1539.                 ans = ans._rescale(Etiny, context = context)
  1540.                 context._raise_error(Subnormal)
  1541.                 if context.flags[Inexact]:
  1542.                     context._raise_error(Underflow)
  1543.                 
  1544.             elif ans:
  1545.                 context._raise_error(Subnormal)
  1546.             
  1547.         else:
  1548.             Etop = context.Etop()
  1549.             if folddown and ans._exp > Etop:
  1550.                 context._raise_error(Clamped)
  1551.                 ans = ans._rescale(Etop, context = context)
  1552.             else:
  1553.                 Emax = context.Emax
  1554.                 if ans_adjusted > Emax:
  1555.                     if not ans:
  1556.                         ans = Decimal(self)
  1557.                         ans._exp = Emax
  1558.                         context._raise_error(Clamped)
  1559.                         return ans
  1560.                     
  1561.                     context._raise_error(Inexact)
  1562.                     context._raise_error(Rounded)
  1563.                     return context._raise_error(Overflow, 'above Emax', ans._sign)
  1564.                 
  1565.         return ans
  1566.  
  1567.     
  1568.     def _round(self, prec = None, rounding = None, context = None):
  1569.         '''Returns a rounded version of self.
  1570.  
  1571.         You can specify the precision or rounding method.  Otherwise, the
  1572.         context determines it.
  1573.         '''
  1574.         if self._is_special:
  1575.             ans = self._check_nans(context = context)
  1576.             if ans:
  1577.                 return ans
  1578.             
  1579.             if self._isinfinity():
  1580.                 return Decimal(self)
  1581.             
  1582.         
  1583.         if context is None:
  1584.             context = getcontext()
  1585.         
  1586.         if rounding is None:
  1587.             rounding = context.rounding
  1588.         
  1589.         if prec is None:
  1590.             prec = context.prec
  1591.         
  1592.         if not self:
  1593.             if prec <= 0:
  1594.                 dig = (0,)
  1595.                 exp = (len(self._int) - prec) + self._exp
  1596.             else:
  1597.                 dig = (0,) * prec
  1598.                 exp = len(self._int) + self._exp - prec
  1599.             ans = Decimal((self._sign, dig, exp))
  1600.             context._raise_error(Rounded)
  1601.             return ans
  1602.         
  1603.         if prec == 0:
  1604.             temp = Decimal(self)
  1605.             temp._int = (0,) + temp._int
  1606.             prec = 1
  1607.         elif prec < 0:
  1608.             exp = self._exp + len(self._int) - prec - 1
  1609.             temp = Decimal((self._sign, (0, 1), exp))
  1610.             prec = 1
  1611.         else:
  1612.             temp = Decimal(self)
  1613.         numdigits = len(temp._int)
  1614.         if prec == numdigits:
  1615.             return temp
  1616.         
  1617.         expdiff = prec - numdigits
  1618.         if expdiff > 0:
  1619.             tmp = list(temp._int)
  1620.             tmp.extend([
  1621.                 0] * expdiff)
  1622.             ans = Decimal((temp._sign, tmp, temp._exp - expdiff))
  1623.             return ans
  1624.         
  1625.         lostdigits = self._int[expdiff:]
  1626.         if lostdigits == (0,) * len(lostdigits):
  1627.             ans = Decimal((temp._sign, temp._int[:prec], temp._exp - expdiff))
  1628.             context._raise_error(Rounded)
  1629.             return ans
  1630.         
  1631.         this_function = getattr(temp, self._pick_rounding_function[rounding])
  1632.         if prec != context.prec:
  1633.             context = context._shallow_copy()
  1634.             context.prec = prec
  1635.         
  1636.         ans = this_function(prec, expdiff, context)
  1637.         context._raise_error(Rounded)
  1638.         context._raise_error(Inexact, 'Changed in rounding')
  1639.         return ans
  1640.  
  1641.     _pick_rounding_function = { }
  1642.     
  1643.     def _round_down(self, prec, expdiff, context):
  1644.         '''Also known as round-towards-0, truncate.'''
  1645.         return Decimal((self._sign, self._int[:prec], self._exp - expdiff))
  1646.  
  1647.     
  1648.     def _round_half_up(self, prec, expdiff, context, tmp = None):
  1649.         '''Rounds 5 up (away from 0)'''
  1650.         if tmp is None:
  1651.             tmp = Decimal((self._sign, self._int[:prec], self._exp - expdiff))
  1652.         
  1653.         if self._int[prec] >= 5:
  1654.             tmp = tmp._increment(round = 0, context = context)
  1655.             if len(tmp._int) > prec:
  1656.                 return Decimal((tmp._sign, tmp._int[:-1], tmp._exp + 1))
  1657.             
  1658.         
  1659.         return tmp
  1660.  
  1661.     
  1662.     def _round_half_even(self, prec, expdiff, context):
  1663.         '''Round 5 to even, rest to nearest.'''
  1664.         tmp = Decimal((self._sign, self._int[:prec], self._exp - expdiff))
  1665.         half = self._int[prec] == 5
  1666.         if half:
  1667.             for digit in self._int[prec + 1:]:
  1668.                 if digit != 0:
  1669.                     half = 0
  1670.                     break
  1671.                     continue
  1672.             
  1673.         
  1674.         if half:
  1675.             if self._int[prec - 1] & 1 == 0:
  1676.                 return tmp
  1677.             
  1678.         
  1679.         return self._round_half_up(prec, expdiff, context, tmp)
  1680.  
  1681.     
  1682.     def _round_half_down(self, prec, expdiff, context):
  1683.         '''Round 5 down'''
  1684.         tmp = Decimal((self._sign, self._int[:prec], self._exp - expdiff))
  1685.         half = self._int[prec] == 5
  1686.         if half:
  1687.             for digit in self._int[prec + 1:]:
  1688.                 if digit != 0:
  1689.                     half = 0
  1690.                     break
  1691.                     continue
  1692.             
  1693.         
  1694.         if half:
  1695.             return tmp
  1696.         
  1697.         return self._round_half_up(prec, expdiff, context, tmp)
  1698.  
  1699.     
  1700.     def _round_up(self, prec, expdiff, context):
  1701.         '''Rounds away from 0.'''
  1702.         tmp = Decimal((self._sign, self._int[:prec], self._exp - expdiff))
  1703.         for digit in self._int[prec:]:
  1704.             if digit != 0:
  1705.                 tmp = tmp._increment(round = 1, context = context)
  1706.                 if len(tmp._int) > prec:
  1707.                     return Decimal((tmp._sign, tmp._int[:-1], tmp._exp + 1))
  1708.                 else:
  1709.                     return tmp
  1710.             len(tmp._int) > prec
  1711.         
  1712.         return tmp
  1713.  
  1714.     
  1715.     def _round_ceiling(self, prec, expdiff, context):
  1716.         '''Rounds up (not away from 0 if negative.)'''
  1717.         if self._sign:
  1718.             return self._round_down(prec, expdiff, context)
  1719.         else:
  1720.             return self._round_up(prec, expdiff, context)
  1721.  
  1722.     
  1723.     def _round_floor(self, prec, expdiff, context):
  1724.         '''Rounds down (not towards 0 if negative)'''
  1725.         if not self._sign:
  1726.             return self._round_down(prec, expdiff, context)
  1727.         else:
  1728.             return self._round_up(prec, expdiff, context)
  1729.  
  1730.     
  1731.     def __pow__(self, n, modulo = None, context = None):
  1732.         """Return self ** n (mod modulo)
  1733.  
  1734.         If modulo is None (default), don't take it mod modulo.
  1735.         """
  1736.         n = _convert_other(n)
  1737.         if n is NotImplemented:
  1738.             return n
  1739.         
  1740.         if context is None:
  1741.             context = getcontext()
  1742.         
  1743.         if self._is_special and n._is_special or n.adjusted() > 8:
  1744.             if n._isinfinity() or n.adjusted() > 8:
  1745.                 return context._raise_error(InvalidOperation, 'x ** INF')
  1746.             
  1747.             ans = self._check_nans(n, context)
  1748.             if ans:
  1749.                 return ans
  1750.             
  1751.         
  1752.         if not n._isinteger():
  1753.             return context._raise_error(InvalidOperation, 'x ** (non-integer)')
  1754.         
  1755.         if not self and not n:
  1756.             return context._raise_error(InvalidOperation, '0 ** 0')
  1757.         
  1758.         if not n:
  1759.             return Decimal(1)
  1760.         
  1761.         if self == Decimal(1):
  1762.             return Decimal(1)
  1763.         
  1764.         if self._sign:
  1765.             pass
  1766.         sign = not n._iseven()
  1767.         n = int(n)
  1768.         if self._isinfinity():
  1769.             if modulo:
  1770.                 return context._raise_error(InvalidOperation, 'INF % x')
  1771.             
  1772.             if n > 0:
  1773.                 return Infsign[sign]
  1774.             
  1775.             return Decimal((sign, (0,), 0))
  1776.         
  1777.         if not modulo and n > 0 and (self._exp + len(self._int) - 1) * n > context.Emax and self:
  1778.             tmp = Decimal('inf')
  1779.             tmp._sign = sign
  1780.             context._raise_error(Rounded)
  1781.             context._raise_error(Inexact)
  1782.             context._raise_error(Overflow, 'Big power', sign)
  1783.             return tmp
  1784.         
  1785.         elength = len(str(abs(n)))
  1786.         firstprec = context.prec
  1787.         if not modulo and firstprec + elength + 1 > DefaultContext.Emax:
  1788.             return context._raise_error(Overflow, 'Too much precision.', sign)
  1789.         
  1790.         mul = Decimal(self)
  1791.         val = Decimal(1)
  1792.         context = context._shallow_copy()
  1793.         context.prec = firstprec + elength + 1
  1794.         if n < 0:
  1795.             n = -n
  1796.             mul = Decimal(1).__div__(mul, context = context)
  1797.         
  1798.         spot = 1
  1799.         while spot <= n:
  1800.             spot <<= 1
  1801.         spot >>= 1
  1802.         while spot:
  1803.             val = val.__mul__(val, context = context)
  1804.             if val._isinfinity():
  1805.                 val = Infsign[sign]
  1806.                 break
  1807.             
  1808.             if spot & n:
  1809.                 val = val.__mul__(mul, context = context)
  1810.             
  1811.             if modulo is not None:
  1812.                 val = val.__mod__(modulo, context = context)
  1813.             
  1814.             spot >>= 1
  1815.         context.prec = firstprec
  1816.         if context._rounding_decision == ALWAYS_ROUND:
  1817.             return val._fix(context)
  1818.         
  1819.         return val
  1820.  
  1821.     
  1822.     def __rpow__(self, other, context = None):
  1823.         '''Swaps self/other and returns __pow__.'''
  1824.         other = _convert_other(other)
  1825.         if other is NotImplemented:
  1826.             return other
  1827.         
  1828.         return other.__pow__(self, context = context)
  1829.  
  1830.     
  1831.     def normalize(self, context = None):
  1832.         '''Normalize- strip trailing 0s, change anything equal to 0 to 0e0'''
  1833.         if self._is_special:
  1834.             ans = self._check_nans(context = context)
  1835.             if ans:
  1836.                 return ans
  1837.             
  1838.         
  1839.         dup = self._fix(context)
  1840.         if dup._isinfinity():
  1841.             return dup
  1842.         
  1843.         if not dup:
  1844.             return Decimal((dup._sign, (0,), 0))
  1845.         
  1846.         end = len(dup._int)
  1847.         exp = dup._exp
  1848.         while dup._int[end - 1] == 0:
  1849.             exp += 1
  1850.             end -= 1
  1851.         return Decimal((dup._sign, dup._int[:end], exp))
  1852.  
  1853.     
  1854.     def quantize(self, exp, rounding = None, context = None, watchexp = 1):
  1855.         '''Quantize self so its exponent is the same as that of exp.
  1856.  
  1857.         Similar to self._rescale(exp._exp) but with error checking.
  1858.         '''
  1859.         if self._is_special or exp._is_special:
  1860.             ans = self._check_nans(exp, context)
  1861.             if ans:
  1862.                 return ans
  1863.             
  1864.             if exp._isinfinity() or self._isinfinity():
  1865.                 if exp._isinfinity() and self._isinfinity():
  1866.                     return self
  1867.                 
  1868.                 if context is None:
  1869.                     context = getcontext()
  1870.                 
  1871.                 return context._raise_error(InvalidOperation, 'quantize with one INF')
  1872.             
  1873.         
  1874.         return self._rescale(exp._exp, rounding, context, watchexp)
  1875.  
  1876.     
  1877.     def same_quantum(self, other):
  1878.         '''Test whether self and other have the same exponent.
  1879.  
  1880.         same as self._exp == other._exp, except NaN == sNaN
  1881.         '''
  1882.         if self._is_special or other._is_special:
  1883.             if self._isnan() or other._isnan():
  1884.                 if self._isnan() and other._isnan():
  1885.                     pass
  1886.                 return True
  1887.             
  1888.             if self._isinfinity() or other._isinfinity():
  1889.                 if self._isinfinity() and other._isinfinity():
  1890.                     pass
  1891.                 return True
  1892.             
  1893.         
  1894.         return self._exp == other._exp
  1895.  
  1896.     
  1897.     def _rescale(self, exp, rounding = None, context = None, watchexp = 1):
  1898.         '''Rescales so that the exponent is exp.
  1899.  
  1900.         exp = exp to scale to (an integer)
  1901.         rounding = rounding version
  1902.         watchexp: if set (default) an error is returned if exp is greater
  1903.         than Emax or less than Etiny.
  1904.         '''
  1905.         if context is None:
  1906.             context = getcontext()
  1907.         
  1908.         if self._is_special:
  1909.             if self._isinfinity():
  1910.                 return context._raise_error(InvalidOperation, 'rescale with an INF')
  1911.             
  1912.             ans = self._check_nans(context = context)
  1913.             if ans:
  1914.                 return ans
  1915.             
  1916.         
  1917.         if watchexp:
  1918.             if context.Emax < exp or context.Etiny() > exp:
  1919.                 return context._raise_error(InvalidOperation, 'rescale(a, INF)')
  1920.             
  1921.         if not self:
  1922.             ans = Decimal(self)
  1923.             ans._int = (0,)
  1924.             ans._exp = exp
  1925.             return ans
  1926.         
  1927.         diff = self._exp - exp
  1928.         digits = len(self._int) + diff
  1929.         if watchexp and digits > context.prec:
  1930.             return context._raise_error(InvalidOperation, 'Rescale > prec')
  1931.         
  1932.         tmp = Decimal(self)
  1933.         tmp._int = (0,) + tmp._int
  1934.         digits += 1
  1935.         if digits < 0:
  1936.             tmp._exp = -digits + tmp._exp
  1937.             tmp._int = (0, 1)
  1938.             digits = 1
  1939.         
  1940.         tmp = tmp._round(digits, rounding, context = context)
  1941.         if tmp._int[0] == 0 and len(tmp._int) > 1:
  1942.             tmp._int = tmp._int[1:]
  1943.         
  1944.         tmp._exp = exp
  1945.         tmp_adjusted = tmp.adjusted()
  1946.         if tmp and tmp_adjusted < context.Emin:
  1947.             context._raise_error(Subnormal)
  1948.         elif tmp and tmp_adjusted > context.Emax:
  1949.             return context._raise_error(InvalidOperation, 'rescale(a, INF)')
  1950.         
  1951.         return tmp
  1952.  
  1953.     
  1954.     def to_integral(self, rounding = None, context = None):
  1955.         '''Rounds to the nearest integer, without raising inexact, rounded.'''
  1956.         if self._is_special:
  1957.             ans = self._check_nans(context = context)
  1958.             if ans:
  1959.                 return ans
  1960.             
  1961.         
  1962.         if self._exp >= 0:
  1963.             return self
  1964.         
  1965.         if context is None:
  1966.             context = getcontext()
  1967.         
  1968.         flags = context._ignore_flags(Rounded, Inexact)
  1969.         ans = self._rescale(0, rounding, context = context)
  1970.         context._regard_flags(flags)
  1971.         return ans
  1972.  
  1973.     
  1974.     def sqrt(self, context = None):
  1975.         '''Return the square root of self.
  1976.  
  1977.         Uses a converging algorithm (Xn+1 = 0.5*(Xn + self / Xn))
  1978.         Should quadratically approach the right answer.
  1979.         '''
  1980.         if self._is_special:
  1981.             ans = self._check_nans(context = context)
  1982.             if ans:
  1983.                 return ans
  1984.             
  1985.             if self._isinfinity() and self._sign == 0:
  1986.                 return Decimal(self)
  1987.             
  1988.         
  1989.         if not self:
  1990.             exp = self._exp // 2
  1991.             if self._sign == 1:
  1992.                 return Decimal((1, (0,), exp))
  1993.             else:
  1994.                 return Decimal((0, (0,), exp))
  1995.         
  1996.         if context is None:
  1997.             context = getcontext()
  1998.         
  1999.         if self._sign == 1:
  2000.             return context._raise_error(InvalidOperation, 'sqrt(-x), x > 0')
  2001.         
  2002.         tmp = Decimal(self)
  2003.         expadd = tmp._exp // 2
  2004.         if tmp._exp & 1:
  2005.             tmp._int += (0,)
  2006.             tmp._exp = 0
  2007.         else:
  2008.             tmp._exp = 0
  2009.         context = context._shallow_copy()
  2010.         flags = context._ignore_all_flags()
  2011.         firstprec = context.prec
  2012.         context.prec = 3
  2013.         Emax = context.Emax
  2014.         Emin = context.Emin
  2015.         context.Emax = DefaultContext.Emax
  2016.         context.Emin = DefaultContext.Emin
  2017.         half = Decimal('0.5')
  2018.         maxp = firstprec + 2
  2019.         rounding = context._set_rounding(ROUND_HALF_EVEN)
  2020.         while None:
  2021.             context.prec = min(2 * context.prec - 2, maxp)
  2022.             ans = half.__mul__(ans.__add__(tmp.__div__(ans, context = context), context = context), context = context)
  2023.             if context.prec == maxp:
  2024.                 break
  2025.                 continue
  2026.         context.prec = firstprec
  2027.         prevexp = ans.adjusted()
  2028.         ans = ans._round(context = context)
  2029.         context.prec = firstprec + 1
  2030.         lower = ans.__sub__(Decimal((0, (5,), ans._exp - 1)), context = context)
  2031.         context._set_rounding(ROUND_UP)
  2032.         if lower.__mul__(lower, context = context) > tmp:
  2033.             ans = ans.__sub__(Decimal((0, (1,), ans._exp)), context = context)
  2034.         else:
  2035.             upper = ans.__add__(Decimal((0, (5,), ans._exp - 1)), context = context)
  2036.             context._set_rounding(ROUND_DOWN)
  2037.             if upper.__mul__(upper, context = context) < tmp:
  2038.                 ans = ans.__add__(Decimal((0, (1,), ans._exp)), context = context)
  2039.             
  2040.         ans._exp += expadd
  2041.         context.prec = firstprec
  2042.         context.rounding = rounding
  2043.         ans = ans._fix(context)
  2044.         rounding = context._set_rounding_decision(NEVER_ROUND)
  2045.         context.Emax = Emax
  2046.         context.Emin = Emin
  2047.         return ans._fix(context)
  2048.  
  2049.     
  2050.     def max(self, other, context = None):
  2051.         '''Returns the larger value.
  2052.  
  2053.         like max(self, other) except if one is not a number, returns
  2054.         NaN (and signals if one is sNaN).  Also rounds.
  2055.         '''
  2056.         other = _convert_other(other)
  2057.         if other is NotImplemented:
  2058.             return other
  2059.         
  2060.         if self._is_special or other._is_special:
  2061.             sn = self._isnan()
  2062.             on = other._isnan()
  2063.             if sn or on:
  2064.                 if on == 1 and sn != 2:
  2065.                     return self
  2066.                 
  2067.                 if sn == 1 and on != 2:
  2068.                     return other
  2069.                 
  2070.                 return self._check_nans(other, context)
  2071.             
  2072.         
  2073.         ans = self
  2074.         c = self.__cmp__(other)
  2075.         if c == 0:
  2076.             if self._sign != other._sign:
  2077.                 if self._sign:
  2078.                     ans = other
  2079.                 
  2080.             elif self._exp < other._exp and not (self._sign):
  2081.                 ans = other
  2082.             elif self._exp > other._exp and self._sign:
  2083.                 ans = other
  2084.             
  2085.         elif c == -1:
  2086.             ans = other
  2087.         
  2088.         if context is None:
  2089.             context = getcontext()
  2090.         
  2091.         if context._rounding_decision == ALWAYS_ROUND:
  2092.             return ans._fix(context)
  2093.         
  2094.         return ans
  2095.  
  2096.     
  2097.     def min(self, other, context = None):
  2098.         '''Returns the smaller value.
  2099.  
  2100.         like min(self, other) except if one is not a number, returns
  2101.         NaN (and signals if one is sNaN).  Also rounds.
  2102.         '''
  2103.         other = _convert_other(other)
  2104.         if other is NotImplemented:
  2105.             return other
  2106.         
  2107.         if self._is_special or other._is_special:
  2108.             sn = self._isnan()
  2109.             on = other._isnan()
  2110.             if sn or on:
  2111.                 if on == 1 and sn != 2:
  2112.                     return self
  2113.                 
  2114.                 if sn == 1 and on != 2:
  2115.                     return other
  2116.                 
  2117.                 return self._check_nans(other, context)
  2118.             
  2119.         
  2120.         ans = self
  2121.         c = self.__cmp__(other)
  2122.         if c == 0:
  2123.             if self._sign != other._sign:
  2124.                 if other._sign:
  2125.                     ans = other
  2126.                 
  2127.             elif self._exp > other._exp and not (self._sign):
  2128.                 ans = other
  2129.             elif self._exp < other._exp and self._sign:
  2130.                 ans = other
  2131.             
  2132.         elif c == 1:
  2133.             ans = other
  2134.         
  2135.         if context is None:
  2136.             context = getcontext()
  2137.         
  2138.         if context._rounding_decision == ALWAYS_ROUND:
  2139.             return ans._fix(context)
  2140.         
  2141.         return ans
  2142.  
  2143.     
  2144.     def _isinteger(self):
  2145.         '''Returns whether self is an integer'''
  2146.         if self._exp >= 0:
  2147.             return True
  2148.         
  2149.         rest = self._int[self._exp:]
  2150.         return rest == (0,) * len(rest)
  2151.  
  2152.     
  2153.     def _iseven(self):
  2154.         '''Returns 1 if self is even.  Assumes self is an integer.'''
  2155.         if self._exp > 0:
  2156.             return 1
  2157.         
  2158.         return self._int[-1 + self._exp] & 1 == 0
  2159.  
  2160.     
  2161.     def adjusted(self):
  2162.         '''Return the adjusted exponent of self'''
  2163.         
  2164.         try:
  2165.             return self._exp + len(self._int) - 1
  2166.         except TypeError:
  2167.             return 0
  2168.  
  2169.  
  2170.     
  2171.     def __reduce__(self):
  2172.         return (self.__class__, (str(self),))
  2173.  
  2174.     
  2175.     def __copy__(self):
  2176.         if type(self) == Decimal:
  2177.             return self
  2178.         
  2179.         return self.__class__(str(self))
  2180.  
  2181.     
  2182.     def __deepcopy__(self, memo):
  2183.         if type(self) == Decimal:
  2184.             return self
  2185.         
  2186.         return self.__class__(str(self))
  2187.  
  2188.  
  2189. rounding_functions = [] if name.startswith('_round_') else _[1]
  2190. for name in rounding_functions:
  2191.     globalname = name[1:].upper()
  2192.     val = globals()[globalname]
  2193.     Decimal._pick_rounding_function[val] = name
  2194.  
  2195. del name
  2196. del val
  2197. del globalname
  2198. del rounding_functions
  2199.  
  2200. class Context(object):
  2201.     '''Contains the context for a Decimal instance.
  2202.  
  2203.     Contains:
  2204.     prec - precision (for use in rounding, division, square roots..)
  2205.     rounding - rounding type. (how you round)
  2206.     _rounding_decision - ALWAYS_ROUND, NEVER_ROUND -- do you round?
  2207.     traps - If traps[exception] = 1, then the exception is
  2208.                     raised when it is caused.  Otherwise, a value is
  2209.                     substituted in.
  2210.     flags  - When an exception is caused, flags[exception] is incremented.
  2211.              (Whether or not the trap_enabler is set)
  2212.              Should be reset by user of Decimal instance.
  2213.     Emin -   Minimum exponent
  2214.     Emax -   Maximum exponent
  2215.     capitals -      If 1, 1*10^1 is printed as 1E+1.
  2216.                     If 0, printed as 1e1
  2217.     _clamp - If 1, change exponents if too high (Default 0)
  2218.     '''
  2219.     
  2220.     def __init__(self, prec = None, rounding = None, traps = None, flags = None, _rounding_decision = None, Emin = None, Emax = None, capitals = None, _clamp = 0, _ignored_flags = None):
  2221.         if flags is None:
  2222.             flags = []
  2223.         
  2224.         if _ignored_flags is None:
  2225.             _ignored_flags = []
  2226.         
  2227.         for name, val in locals().items():
  2228.             if val is None:
  2229.                 setattr(self, name, _copy.copy(getattr(DefaultContext, name)))
  2230.                 continue
  2231.             None if not isinstance(flags, dict) else dict if traps is not None and not isinstance(traps, dict) else dict
  2232.             setattr(self, name, val)
  2233.         
  2234.         del self.self
  2235.  
  2236.     
  2237.     def __repr__(self):
  2238.         '''Show the current context.'''
  2239.         s = []
  2240.         s.append('Context(prec=%(prec)d, rounding=%(rounding)s, Emin=%(Emin)d, Emax=%(Emax)d, capitals=%(capitals)d' % vars(self))
  2241.         ', '.join([] + [](_[1]) + ']')
  2242.         ', '.join([] + [](_[1]) + ']')
  2243.         return ', '.join(s) + ')'
  2244.  
  2245.     
  2246.     def clear_flags(self):
  2247.         '''Reset all flags to zero'''
  2248.         for flag in self.flags:
  2249.             self.flags[flag] = 0
  2250.         
  2251.  
  2252.     
  2253.     def _shallow_copy(self):
  2254.         '''Returns a shallow copy from self.'''
  2255.         nc = Context(self.prec, self.rounding, self.traps, self.flags, self._rounding_decision, self.Emin, self.Emax, self.capitals, self._clamp, self._ignored_flags)
  2256.         return nc
  2257.  
  2258.     
  2259.     def copy(self):
  2260.         '''Returns a deep copy from self.'''
  2261.         nc = Context(self.prec, self.rounding, self.traps.copy(), self.flags.copy(), self._rounding_decision, self.Emin, self.Emax, self.capitals, self._clamp, self._ignored_flags)
  2262.         return nc
  2263.  
  2264.     __copy__ = copy
  2265.     
  2266.     def _raise_error(self, condition, explanation = None, *args):
  2267.         '''Handles an error
  2268.  
  2269.         If the flag is in _ignored_flags, returns the default response.
  2270.         Otherwise, it increments the flag, then, if the corresponding
  2271.         trap_enabler is set, it reaises the exception.  Otherwise, it returns
  2272.         the default value after incrementing the flag.
  2273.         '''
  2274.         error = _condition_map.get(condition, condition)
  2275.         if error in self._ignored_flags:
  2276.             return error().handle(self, *args)
  2277.         
  2278.         self.flags[error] += 1
  2279.         if not self.traps[error]:
  2280.             return condition().handle(self, *args)
  2281.         
  2282.         raise error, explanation
  2283.  
  2284.     
  2285.     def _ignore_all_flags(self):
  2286.         '''Ignore all flags, if they are raised'''
  2287.         return self._ignore_flags(*_signals)
  2288.  
  2289.     
  2290.     def _ignore_flags(self, *flags):
  2291.         '''Ignore the flags, if they are raised'''
  2292.         self._ignored_flags = self._ignored_flags + list(flags)
  2293.         return list(flags)
  2294.  
  2295.     
  2296.     def _regard_flags(self, *flags):
  2297.         '''Stop ignoring the flags, if they are raised'''
  2298.         if flags and isinstance(flags[0], (tuple, list)):
  2299.             flags = flags[0]
  2300.         
  2301.         for flag in flags:
  2302.             self._ignored_flags.remove(flag)
  2303.         
  2304.  
  2305.     
  2306.     def __hash__(self):
  2307.         '''A Context cannot be hashed.'''
  2308.         raise TypeError, 'Cannot hash a Context.'
  2309.  
  2310.     
  2311.     def Etiny(self):
  2312.         '''Returns Etiny (= Emin - prec + 1)'''
  2313.         return int((self.Emin - self.prec) + 1)
  2314.  
  2315.     
  2316.     def Etop(self):
  2317.         '''Returns maximum exponent (= Emax - prec + 1)'''
  2318.         return int((self.Emax - self.prec) + 1)
  2319.  
  2320.     
  2321.     def _set_rounding_decision(self, type):
  2322.         """Sets the rounding decision.
  2323.  
  2324.         Sets the rounding decision, and returns the current (previous)
  2325.         rounding decision.  Often used like:
  2326.  
  2327.         context = context._shallow_copy()
  2328.         # That so you don't change the calling context
  2329.         # if an error occurs in the middle (say DivisionImpossible is raised).
  2330.  
  2331.         rounding = context._set_rounding_decision(NEVER_ROUND)
  2332.         instance = instance / Decimal(2)
  2333.         context._set_rounding_decision(rounding)
  2334.  
  2335.         This will make it not round for that operation.
  2336.         """
  2337.         rounding = self._rounding_decision
  2338.         self._rounding_decision = type
  2339.         return rounding
  2340.  
  2341.     
  2342.     def _set_rounding(self, type):
  2343.         """Sets the rounding type.
  2344.  
  2345.         Sets the rounding type, and returns the current (previous)
  2346.         rounding type.  Often used like:
  2347.  
  2348.         context = context.copy()
  2349.         # so you don't change the calling context
  2350.         # if an error occurs in the middle.
  2351.         rounding = context._set_rounding(ROUND_UP)
  2352.         val = self.__sub__(other, context=context)
  2353.         context._set_rounding(rounding)
  2354.  
  2355.         This will make it round up for that operation.
  2356.         """
  2357.         rounding = self.rounding
  2358.         self.rounding = type
  2359.         return rounding
  2360.  
  2361.     
  2362.     def create_decimal(self, num = '0'):
  2363.         '''Creates a new Decimal instance but using self as context.'''
  2364.         d = Decimal(num, context = self)
  2365.         return d._fix(self)
  2366.  
  2367.     
  2368.     def abs(self, a):
  2369.         '''Returns the absolute value of the operand.
  2370.  
  2371.         If the operand is negative, the result is the same as using the minus
  2372.         operation on the operand. Otherwise, the result is the same as using
  2373.         the plus operation on the operand.
  2374.  
  2375.         >>> ExtendedContext.abs(Decimal(\'2.1\'))
  2376.         Decimal("2.1")
  2377.         >>> ExtendedContext.abs(Decimal(\'-100\'))
  2378.         Decimal("100")
  2379.         >>> ExtendedContext.abs(Decimal(\'101.5\'))
  2380.         Decimal("101.5")
  2381.         >>> ExtendedContext.abs(Decimal(\'-101.5\'))
  2382.         Decimal("101.5")
  2383.         '''
  2384.         return a.__abs__(context = self)
  2385.  
  2386.     
  2387.     def add(self, a, b):
  2388.         '''Return the sum of the two operands.
  2389.  
  2390.         >>> ExtendedContext.add(Decimal(\'12\'), Decimal(\'7.00\'))
  2391.         Decimal("19.00")
  2392.         >>> ExtendedContext.add(Decimal(\'1E+2\'), Decimal(\'1.01E+4\'))
  2393.         Decimal("1.02E+4")
  2394.         '''
  2395.         return a.__add__(b, context = self)
  2396.  
  2397.     
  2398.     def _apply(self, a):
  2399.         return str(a._fix(self))
  2400.  
  2401.     
  2402.     def compare(self, a, b):
  2403.         '''Compares values numerically.
  2404.  
  2405.         If the signs of the operands differ, a value representing each operand
  2406.         (\'-1\' if the operand is less than zero, \'0\' if the operand is zero or
  2407.         negative zero, or \'1\' if the operand is greater than zero) is used in
  2408.         place of that operand for the comparison instead of the actual
  2409.         operand.
  2410.  
  2411.         The comparison is then effected by subtracting the second operand from
  2412.         the first and then returning a value according to the result of the
  2413.         subtraction: \'-1\' if the result is less than zero, \'0\' if the result is
  2414.         zero or negative zero, or \'1\' if the result is greater than zero.
  2415.  
  2416.         >>> ExtendedContext.compare(Decimal(\'2.1\'), Decimal(\'3\'))
  2417.         Decimal("-1")
  2418.         >>> ExtendedContext.compare(Decimal(\'2.1\'), Decimal(\'2.1\'))
  2419.         Decimal("0")
  2420.         >>> ExtendedContext.compare(Decimal(\'2.1\'), Decimal(\'2.10\'))
  2421.         Decimal("0")
  2422.         >>> ExtendedContext.compare(Decimal(\'3\'), Decimal(\'2.1\'))
  2423.         Decimal("1")
  2424.         >>> ExtendedContext.compare(Decimal(\'2.1\'), Decimal(\'-3\'))
  2425.         Decimal("1")
  2426.         >>> ExtendedContext.compare(Decimal(\'-3\'), Decimal(\'2.1\'))
  2427.         Decimal("-1")
  2428.         '''
  2429.         return a.compare(b, context = self)
  2430.  
  2431.     
  2432.     def divide(self, a, b):
  2433.         '''Decimal division in a specified context.
  2434.  
  2435.         >>> ExtendedContext.divide(Decimal(\'1\'), Decimal(\'3\'))
  2436.         Decimal("0.333333333")
  2437.         >>> ExtendedContext.divide(Decimal(\'2\'), Decimal(\'3\'))
  2438.         Decimal("0.666666667")
  2439.         >>> ExtendedContext.divide(Decimal(\'5\'), Decimal(\'2\'))
  2440.         Decimal("2.5")
  2441.         >>> ExtendedContext.divide(Decimal(\'1\'), Decimal(\'10\'))
  2442.         Decimal("0.1")
  2443.         >>> ExtendedContext.divide(Decimal(\'12\'), Decimal(\'12\'))
  2444.         Decimal("1")
  2445.         >>> ExtendedContext.divide(Decimal(\'8.00\'), Decimal(\'2\'))
  2446.         Decimal("4.00")
  2447.         >>> ExtendedContext.divide(Decimal(\'2.400\'), Decimal(\'2.0\'))
  2448.         Decimal("1.20")
  2449.         >>> ExtendedContext.divide(Decimal(\'1000\'), Decimal(\'100\'))
  2450.         Decimal("10")
  2451.         >>> ExtendedContext.divide(Decimal(\'1000\'), Decimal(\'1\'))
  2452.         Decimal("1000")
  2453.         >>> ExtendedContext.divide(Decimal(\'2.40E+6\'), Decimal(\'2\'))
  2454.         Decimal("1.20E+6")
  2455.         '''
  2456.         return a.__div__(b, context = self)
  2457.  
  2458.     
  2459.     def divide_int(self, a, b):
  2460.         '''Divides two numbers and returns the integer part of the result.
  2461.  
  2462.         >>> ExtendedContext.divide_int(Decimal(\'2\'), Decimal(\'3\'))
  2463.         Decimal("0")
  2464.         >>> ExtendedContext.divide_int(Decimal(\'10\'), Decimal(\'3\'))
  2465.         Decimal("3")
  2466.         >>> ExtendedContext.divide_int(Decimal(\'1\'), Decimal(\'0.3\'))
  2467.         Decimal("3")
  2468.         '''
  2469.         return a.__floordiv__(b, context = self)
  2470.  
  2471.     
  2472.     def divmod(self, a, b):
  2473.         return a.__divmod__(b, context = self)
  2474.  
  2475.     
  2476.     def max(self, a, b):
  2477.         '''max compares two values numerically and returns the maximum.
  2478.  
  2479.         If either operand is a NaN then the general rules apply.
  2480.         Otherwise, the operands are compared as as though by the compare
  2481.         operation. If they are numerically equal then the left-hand operand
  2482.         is chosen as the result. Otherwise the maximum (closer to positive
  2483.         infinity) of the two operands is chosen as the result.
  2484.  
  2485.         >>> ExtendedContext.max(Decimal(\'3\'), Decimal(\'2\'))
  2486.         Decimal("3")
  2487.         >>> ExtendedContext.max(Decimal(\'-10\'), Decimal(\'3\'))
  2488.         Decimal("3")
  2489.         >>> ExtendedContext.max(Decimal(\'1.0\'), Decimal(\'1\'))
  2490.         Decimal("1")
  2491.         >>> ExtendedContext.max(Decimal(\'7\'), Decimal(\'NaN\'))
  2492.         Decimal("7")
  2493.         '''
  2494.         return a.max(b, context = self)
  2495.  
  2496.     
  2497.     def min(self, a, b):
  2498.         '''min compares two values numerically and returns the minimum.
  2499.  
  2500.         If either operand is a NaN then the general rules apply.
  2501.         Otherwise, the operands are compared as as though by the compare
  2502.         operation. If they are numerically equal then the left-hand operand
  2503.         is chosen as the result. Otherwise the minimum (closer to negative
  2504.         infinity) of the two operands is chosen as the result.
  2505.  
  2506.         >>> ExtendedContext.min(Decimal(\'3\'), Decimal(\'2\'))
  2507.         Decimal("2")
  2508.         >>> ExtendedContext.min(Decimal(\'-10\'), Decimal(\'3\'))
  2509.         Decimal("-10")
  2510.         >>> ExtendedContext.min(Decimal(\'1.0\'), Decimal(\'1\'))
  2511.         Decimal("1.0")
  2512.         >>> ExtendedContext.min(Decimal(\'7\'), Decimal(\'NaN\'))
  2513.         Decimal("7")
  2514.         '''
  2515.         return a.min(b, context = self)
  2516.  
  2517.     
  2518.     def minus(self, a):
  2519.         '''Minus corresponds to unary prefix minus in Python.
  2520.  
  2521.         The operation is evaluated using the same rules as subtract; the
  2522.         operation minus(a) is calculated as subtract(\'0\', a) where the \'0\'
  2523.         has the same exponent as the operand.
  2524.  
  2525.         >>> ExtendedContext.minus(Decimal(\'1.3\'))
  2526.         Decimal("-1.3")
  2527.         >>> ExtendedContext.minus(Decimal(\'-1.3\'))
  2528.         Decimal("1.3")
  2529.         '''
  2530.         return a.__neg__(context = self)
  2531.  
  2532.     
  2533.     def multiply(self, a, b):
  2534.         '''multiply multiplies two operands.
  2535.  
  2536.         If either operand is a special value then the general rules apply.
  2537.         Otherwise, the operands are multiplied together (\'long multiplication\'),
  2538.         resulting in a number which may be as long as the sum of the lengths
  2539.         of the two operands.
  2540.  
  2541.         >>> ExtendedContext.multiply(Decimal(\'1.20\'), Decimal(\'3\'))
  2542.         Decimal("3.60")
  2543.         >>> ExtendedContext.multiply(Decimal(\'7\'), Decimal(\'3\'))
  2544.         Decimal("21")
  2545.         >>> ExtendedContext.multiply(Decimal(\'0.9\'), Decimal(\'0.8\'))
  2546.         Decimal("0.72")
  2547.         >>> ExtendedContext.multiply(Decimal(\'0.9\'), Decimal(\'-0\'))
  2548.         Decimal("-0.0")
  2549.         >>> ExtendedContext.multiply(Decimal(\'654321\'), Decimal(\'654321\'))
  2550.         Decimal("4.28135971E+11")
  2551.         '''
  2552.         return a.__mul__(b, context = self)
  2553.  
  2554.     
  2555.     def normalize(self, a):
  2556.         '''normalize reduces an operand to its simplest form.
  2557.  
  2558.         Essentially a plus operation with all trailing zeros removed from the
  2559.         result.
  2560.  
  2561.         >>> ExtendedContext.normalize(Decimal(\'2.1\'))
  2562.         Decimal("2.1")
  2563.         >>> ExtendedContext.normalize(Decimal(\'-2.0\'))
  2564.         Decimal("-2")
  2565.         >>> ExtendedContext.normalize(Decimal(\'1.200\'))
  2566.         Decimal("1.2")
  2567.         >>> ExtendedContext.normalize(Decimal(\'-120\'))
  2568.         Decimal("-1.2E+2")
  2569.         >>> ExtendedContext.normalize(Decimal(\'120.00\'))
  2570.         Decimal("1.2E+2")
  2571.         >>> ExtendedContext.normalize(Decimal(\'0.00\'))
  2572.         Decimal("0")
  2573.         '''
  2574.         return a.normalize(context = self)
  2575.  
  2576.     
  2577.     def plus(self, a):
  2578.         '''Plus corresponds to unary prefix plus in Python.
  2579.  
  2580.         The operation is evaluated using the same rules as add; the
  2581.         operation plus(a) is calculated as add(\'0\', a) where the \'0\'
  2582.         has the same exponent as the operand.
  2583.  
  2584.         >>> ExtendedContext.plus(Decimal(\'1.3\'))
  2585.         Decimal("1.3")
  2586.         >>> ExtendedContext.plus(Decimal(\'-1.3\'))
  2587.         Decimal("-1.3")
  2588.         '''
  2589.         return a.__pos__(context = self)
  2590.  
  2591.     
  2592.     def power(self, a, b, modulo = None):
  2593.         '''Raises a to the power of b, to modulo if given.
  2594.  
  2595.         The right-hand operand must be a whole number whose integer part (after
  2596.         any exponent has been applied) has no more than 9 digits and whose
  2597.         fractional part (if any) is all zeros before any rounding. The operand
  2598.         may be positive, negative, or zero; if negative, the absolute value of
  2599.         the power is used, and the left-hand operand is inverted (divided into
  2600.         1) before use.
  2601.  
  2602.         If the increased precision needed for the intermediate calculations
  2603.         exceeds the capabilities of the implementation then an Invalid operation
  2604.         condition is raised.
  2605.  
  2606.         If, when raising to a negative power, an underflow occurs during the
  2607.         division into 1, the operation is not halted at that point but
  2608.         continues.
  2609.  
  2610.         >>> ExtendedContext.power(Decimal(\'2\'), Decimal(\'3\'))
  2611.         Decimal("8")
  2612.         >>> ExtendedContext.power(Decimal(\'2\'), Decimal(\'-3\'))
  2613.         Decimal("0.125")
  2614.         >>> ExtendedContext.power(Decimal(\'1.7\'), Decimal(\'8\'))
  2615.         Decimal("69.7575744")
  2616.         >>> ExtendedContext.power(Decimal(\'Infinity\'), Decimal(\'-2\'))
  2617.         Decimal("0")
  2618.         >>> ExtendedContext.power(Decimal(\'Infinity\'), Decimal(\'-1\'))
  2619.         Decimal("0")
  2620.         >>> ExtendedContext.power(Decimal(\'Infinity\'), Decimal(\'0\'))
  2621.         Decimal("1")
  2622.         >>> ExtendedContext.power(Decimal(\'Infinity\'), Decimal(\'1\'))
  2623.         Decimal("Infinity")
  2624.         >>> ExtendedContext.power(Decimal(\'Infinity\'), Decimal(\'2\'))
  2625.         Decimal("Infinity")
  2626.         >>> ExtendedContext.power(Decimal(\'-Infinity\'), Decimal(\'-2\'))
  2627.         Decimal("0")
  2628.         >>> ExtendedContext.power(Decimal(\'-Infinity\'), Decimal(\'-1\'))
  2629.         Decimal("-0")
  2630.         >>> ExtendedContext.power(Decimal(\'-Infinity\'), Decimal(\'0\'))
  2631.         Decimal("1")
  2632.         >>> ExtendedContext.power(Decimal(\'-Infinity\'), Decimal(\'1\'))
  2633.         Decimal("-Infinity")
  2634.         >>> ExtendedContext.power(Decimal(\'-Infinity\'), Decimal(\'2\'))
  2635.         Decimal("Infinity")
  2636.         >>> ExtendedContext.power(Decimal(\'0\'), Decimal(\'0\'))
  2637.         Decimal("NaN")
  2638.         '''
  2639.         return a.__pow__(b, modulo, context = self)
  2640.  
  2641.     
  2642.     def quantize(self, a, b):
  2643.         '''Returns a value equal to \'a\' (rounded) and having the exponent of \'b\'.
  2644.  
  2645.         The coefficient of the result is derived from that of the left-hand
  2646.         operand. It may be rounded using the current rounding setting (if the
  2647.         exponent is being increased), multiplied by a positive power of ten (if
  2648.         the exponent is being decreased), or is unchanged (if the exponent is
  2649.         already equal to that of the right-hand operand).
  2650.  
  2651.         Unlike other operations, if the length of the coefficient after the
  2652.         quantize operation would be greater than precision then an Invalid
  2653.         operation condition is raised. This guarantees that, unless there is an
  2654.         error condition, the exponent of the result of a quantize is always
  2655.         equal to that of the right-hand operand.
  2656.  
  2657.         Also unlike other operations, quantize will never raise Underflow, even
  2658.         if the result is subnormal and inexact.
  2659.  
  2660.         >>> ExtendedContext.quantize(Decimal(\'2.17\'), Decimal(\'0.001\'))
  2661.         Decimal("2.170")
  2662.         >>> ExtendedContext.quantize(Decimal(\'2.17\'), Decimal(\'0.01\'))
  2663.         Decimal("2.17")
  2664.         >>> ExtendedContext.quantize(Decimal(\'2.17\'), Decimal(\'0.1\'))
  2665.         Decimal("2.2")
  2666.         >>> ExtendedContext.quantize(Decimal(\'2.17\'), Decimal(\'1e+0\'))
  2667.         Decimal("2")
  2668.         >>> ExtendedContext.quantize(Decimal(\'2.17\'), Decimal(\'1e+1\'))
  2669.         Decimal("0E+1")
  2670.         >>> ExtendedContext.quantize(Decimal(\'-Inf\'), Decimal(\'Infinity\'))
  2671.         Decimal("-Infinity")
  2672.         >>> ExtendedContext.quantize(Decimal(\'2\'), Decimal(\'Infinity\'))
  2673.         Decimal("NaN")
  2674.         >>> ExtendedContext.quantize(Decimal(\'-0.1\'), Decimal(\'1\'))
  2675.         Decimal("-0")
  2676.         >>> ExtendedContext.quantize(Decimal(\'-0\'), Decimal(\'1e+5\'))
  2677.         Decimal("-0E+5")
  2678.         >>> ExtendedContext.quantize(Decimal(\'+35236450.6\'), Decimal(\'1e-2\'))
  2679.         Decimal("NaN")
  2680.         >>> ExtendedContext.quantize(Decimal(\'-35236450.6\'), Decimal(\'1e-2\'))
  2681.         Decimal("NaN")
  2682.         >>> ExtendedContext.quantize(Decimal(\'217\'), Decimal(\'1e-1\'))
  2683.         Decimal("217.0")
  2684.         >>> ExtendedContext.quantize(Decimal(\'217\'), Decimal(\'1e-0\'))
  2685.         Decimal("217")
  2686.         >>> ExtendedContext.quantize(Decimal(\'217\'), Decimal(\'1e+1\'))
  2687.         Decimal("2.2E+2")
  2688.         >>> ExtendedContext.quantize(Decimal(\'217\'), Decimal(\'1e+2\'))
  2689.         Decimal("2E+2")
  2690.         '''
  2691.         return a.quantize(b, context = self)
  2692.  
  2693.     
  2694.     def remainder(self, a, b):
  2695.         '''Returns the remainder from integer division.
  2696.  
  2697.         The result is the residue of the dividend after the operation of
  2698.         calculating integer division as described for divide-integer, rounded to
  2699.         precision digits if necessary. The sign of the result, if non-zero, is
  2700.         the same as that of the original dividend.
  2701.  
  2702.         This operation will fail under the same conditions as integer division
  2703.         (that is, if integer division on the same two operands would fail, the
  2704.         remainder cannot be calculated).
  2705.  
  2706.         >>> ExtendedContext.remainder(Decimal(\'2.1\'), Decimal(\'3\'))
  2707.         Decimal("2.1")
  2708.         >>> ExtendedContext.remainder(Decimal(\'10\'), Decimal(\'3\'))
  2709.         Decimal("1")
  2710.         >>> ExtendedContext.remainder(Decimal(\'-10\'), Decimal(\'3\'))
  2711.         Decimal("-1")
  2712.         >>> ExtendedContext.remainder(Decimal(\'10.2\'), Decimal(\'1\'))
  2713.         Decimal("0.2")
  2714.         >>> ExtendedContext.remainder(Decimal(\'10\'), Decimal(\'0.3\'))
  2715.         Decimal("0.1")
  2716.         >>> ExtendedContext.remainder(Decimal(\'3.6\'), Decimal(\'1.3\'))
  2717.         Decimal("1.0")
  2718.         '''
  2719.         return a.__mod__(b, context = self)
  2720.  
  2721.     
  2722.     def remainder_near(self, a, b):
  2723.         '''Returns to be "a - b * n", where n is the integer nearest the exact
  2724.         value of "x / b" (if two integers are equally near then the even one
  2725.         is chosen). If the result is equal to 0 then its sign will be the
  2726.         sign of a.
  2727.  
  2728.         This operation will fail under the same conditions as integer division
  2729.         (that is, if integer division on the same two operands would fail, the
  2730.         remainder cannot be calculated).
  2731.  
  2732.         >>> ExtendedContext.remainder_near(Decimal(\'2.1\'), Decimal(\'3\'))
  2733.         Decimal("-0.9")
  2734.         >>> ExtendedContext.remainder_near(Decimal(\'10\'), Decimal(\'6\'))
  2735.         Decimal("-2")
  2736.         >>> ExtendedContext.remainder_near(Decimal(\'10\'), Decimal(\'3\'))
  2737.         Decimal("1")
  2738.         >>> ExtendedContext.remainder_near(Decimal(\'-10\'), Decimal(\'3\'))
  2739.         Decimal("-1")
  2740.         >>> ExtendedContext.remainder_near(Decimal(\'10.2\'), Decimal(\'1\'))
  2741.         Decimal("0.2")
  2742.         >>> ExtendedContext.remainder_near(Decimal(\'10\'), Decimal(\'0.3\'))
  2743.         Decimal("0.1")
  2744.         >>> ExtendedContext.remainder_near(Decimal(\'3.6\'), Decimal(\'1.3\'))
  2745.         Decimal("-0.3")
  2746.         '''
  2747.         return a.remainder_near(b, context = self)
  2748.  
  2749.     
  2750.     def same_quantum(self, a, b):
  2751.         """Returns True if the two operands have the same exponent.
  2752.  
  2753.         The result is never affected by either the sign or the coefficient of
  2754.         either operand.
  2755.  
  2756.         >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001'))
  2757.         False
  2758.         >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01'))
  2759.         True
  2760.         >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1'))
  2761.         False
  2762.         >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf'))
  2763.         True
  2764.         """
  2765.         return a.same_quantum(b)
  2766.  
  2767.     
  2768.     def sqrt(self, a):
  2769.         '''Returns the square root of a non-negative number to context precision.
  2770.  
  2771.         If the result must be inexact, it is rounded using the round-half-even
  2772.         algorithm.
  2773.  
  2774.         >>> ExtendedContext.sqrt(Decimal(\'0\'))
  2775.         Decimal("0")
  2776.         >>> ExtendedContext.sqrt(Decimal(\'-0\'))
  2777.         Decimal("-0")
  2778.         >>> ExtendedContext.sqrt(Decimal(\'0.39\'))
  2779.         Decimal("0.624499800")
  2780.         >>> ExtendedContext.sqrt(Decimal(\'100\'))
  2781.         Decimal("10")
  2782.         >>> ExtendedContext.sqrt(Decimal(\'1\'))
  2783.         Decimal("1")
  2784.         >>> ExtendedContext.sqrt(Decimal(\'1.0\'))
  2785.         Decimal("1.0")
  2786.         >>> ExtendedContext.sqrt(Decimal(\'1.00\'))
  2787.         Decimal("1.0")
  2788.         >>> ExtendedContext.sqrt(Decimal(\'7\'))
  2789.         Decimal("2.64575131")
  2790.         >>> ExtendedContext.sqrt(Decimal(\'10\'))
  2791.         Decimal("3.16227766")
  2792.         >>> ExtendedContext.prec
  2793.         9
  2794.         '''
  2795.         return a.sqrt(context = self)
  2796.  
  2797.     
  2798.     def subtract(self, a, b):
  2799.         '''Return the difference between the two operands.
  2800.  
  2801.         >>> ExtendedContext.subtract(Decimal(\'1.3\'), Decimal(\'1.07\'))
  2802.         Decimal("0.23")
  2803.         >>> ExtendedContext.subtract(Decimal(\'1.3\'), Decimal(\'1.30\'))
  2804.         Decimal("0.00")
  2805.         >>> ExtendedContext.subtract(Decimal(\'1.3\'), Decimal(\'2.07\'))
  2806.         Decimal("-0.77")
  2807.         '''
  2808.         return a.__sub__(b, context = self)
  2809.  
  2810.     
  2811.     def to_eng_string(self, a):
  2812.         '''Converts a number to a string, using scientific notation.
  2813.  
  2814.         The operation is not affected by the context.
  2815.         '''
  2816.         return a.to_eng_string(context = self)
  2817.  
  2818.     
  2819.     def to_sci_string(self, a):
  2820.         '''Converts a number to a string, using scientific notation.
  2821.  
  2822.         The operation is not affected by the context.
  2823.         '''
  2824.         return a.__str__(context = self)
  2825.  
  2826.     
  2827.     def to_integral(self, a):
  2828.         '''Rounds to an integer.
  2829.  
  2830.         When the operand has a negative exponent, the result is the same
  2831.         as using the quantize() operation using the given operand as the
  2832.         left-hand-operand, 1E+0 as the right-hand-operand, and the precision
  2833.         of the operand as the precision setting, except that no flags will
  2834.         be set. The rounding mode is taken from the context.
  2835.  
  2836.         >>> ExtendedContext.to_integral(Decimal(\'2.1\'))
  2837.         Decimal("2")
  2838.         >>> ExtendedContext.to_integral(Decimal(\'100\'))
  2839.         Decimal("100")
  2840.         >>> ExtendedContext.to_integral(Decimal(\'100.0\'))
  2841.         Decimal("100")
  2842.         >>> ExtendedContext.to_integral(Decimal(\'101.5\'))
  2843.         Decimal("102")
  2844.         >>> ExtendedContext.to_integral(Decimal(\'-101.5\'))
  2845.         Decimal("-102")
  2846.         >>> ExtendedContext.to_integral(Decimal(\'10E+5\'))
  2847.         Decimal("1.0E+6")
  2848.         >>> ExtendedContext.to_integral(Decimal(\'7.89E+77\'))
  2849.         Decimal("7.89E+77")
  2850.         >>> ExtendedContext.to_integral(Decimal(\'-Inf\'))
  2851.         Decimal("-Infinity")
  2852.         '''
  2853.         return a.to_integral(context = self)
  2854.  
  2855.  
  2856.  
  2857. class _WorkRep(object):
  2858.     __slots__ = ('sign', 'int', 'exp')
  2859.     
  2860.     def __init__(self, value = None):
  2861.         if value is None:
  2862.             self.sign = None
  2863.             self.int = 0
  2864.             self.exp = None
  2865.         elif isinstance(value, Decimal):
  2866.             self.sign = value._sign
  2867.             cum = 0
  2868.             for digit in value._int:
  2869.                 cum = cum * 10 + digit
  2870.             
  2871.             self.int = cum
  2872.             self.exp = value._exp
  2873.         else:
  2874.             self.sign = value[0]
  2875.             self.int = value[1]
  2876.             self.exp = value[2]
  2877.  
  2878.     
  2879.     def __repr__(self):
  2880.         return '(%r, %r, %r)' % (self.sign, self.int, self.exp)
  2881.  
  2882.     __str__ = __repr__
  2883.  
  2884.  
  2885. def _normalize(op1, op2, shouldround = 0, prec = 0):
  2886.     '''Normalizes op1, op2 to have the same exp and length of coefficient.
  2887.  
  2888.     Done during addition.
  2889.     '''
  2890.     numdigits = int(op1.exp - op2.exp)
  2891.     if numdigits < 0:
  2892.         numdigits = -numdigits
  2893.         tmp = op2
  2894.         other = op1
  2895.     else:
  2896.         tmp = op1
  2897.         other = op2
  2898.     if shouldround and numdigits > prec + 1:
  2899.         tmp_len = len(str(tmp.int))
  2900.         other_len = len(str(other.int))
  2901.         if numdigits > other_len + prec + 1 - tmp_len:
  2902.             extend = prec + 2 - tmp_len
  2903.             if extend <= 0:
  2904.                 extend = 1
  2905.             
  2906.             tmp.int *= 10 ** extend
  2907.             tmp.exp -= extend
  2908.             other.int = 1
  2909.             other.exp = tmp.exp
  2910.             return (op1, op2)
  2911.         
  2912.     
  2913.     tmp.int *= 10 ** numdigits
  2914.     tmp.exp -= numdigits
  2915.     return (op1, op2)
  2916.  
  2917.  
  2918. def _adjust_coefficients(op1, op2):
  2919.     '''Adjust op1, op2 so that op2.int * 10 > op1.int >= op2.int.
  2920.  
  2921.     Returns the adjusted op1, op2 as well as the change in op1.exp-op2.exp.
  2922.  
  2923.     Used on _WorkRep instances during division.
  2924.     '''
  2925.     adjust = 0
  2926.     while op2.int > op1.int:
  2927.         op1.int *= 10
  2928.         op1.exp -= 1
  2929.         adjust += 1
  2930.         continue
  2931.         op1
  2932.     while op1.int >= 10 * op2.int:
  2933.         op2.int *= 10
  2934.         op2.exp -= 1
  2935.         adjust -= 1
  2936.         continue
  2937.         op2
  2938.     return (op1, op2, adjust)
  2939.  
  2940.  
  2941. def _convert_other(other):
  2942.     """Convert other to Decimal.
  2943.  
  2944.     Verifies that it's ok to use in an implicit construction.
  2945.     """
  2946.     if isinstance(other, Decimal):
  2947.         return other
  2948.     
  2949.     if isinstance(other, (int, long)):
  2950.         return Decimal(other)
  2951.     
  2952.     return NotImplemented
  2953.  
  2954. _infinity_map = {
  2955.     'inf': 1,
  2956.     'infinity': 1,
  2957.     '+inf': 1,
  2958.     '+infinity': 1,
  2959.     '-inf': -1,
  2960.     '-infinity': -1 }
  2961.  
  2962. def _isinfinity(num):
  2963.     '''Determines whether a string or float is infinity.
  2964.  
  2965.     +1 for negative infinity; 0 for finite ; +1 for positive infinity
  2966.     '''
  2967.     num = str(num).lower()
  2968.     return _infinity_map.get(num, 0)
  2969.  
  2970.  
  2971. def _isnan(num):
  2972.     '''Determines whether a string or float is NaN
  2973.  
  2974.     (1, sign, diagnostic info as string) => NaN
  2975.     (2, sign, diagnostic info as string) => sNaN
  2976.     0 => not a NaN
  2977.     '''
  2978.     num = str(num).lower()
  2979.     if not num:
  2980.         return 0
  2981.     
  2982.     sign = 0
  2983.     if num[0] == '+':
  2984.         num = num[1:]
  2985.     elif num[0] == '-':
  2986.         num = num[1:]
  2987.         sign = 1
  2988.     
  2989.     if num.startswith('nan'):
  2990.         if len(num) > 3 and not num[3:].isdigit():
  2991.             return 0
  2992.         
  2993.         return (1, sign, num[3:].lstrip('0'))
  2994.     
  2995.     if num.startswith('snan'):
  2996.         if len(num) > 4 and not num[4:].isdigit():
  2997.             return 0
  2998.         
  2999.         return (2, sign, num[4:].lstrip('0'))
  3000.     
  3001.     return 0
  3002.  
  3003. DefaultContext = Context(prec = 28, rounding = ROUND_HALF_EVEN, traps = [
  3004.     DivisionByZero,
  3005.     Overflow,
  3006.     InvalidOperation], flags = [], _rounding_decision = ALWAYS_ROUND, Emax = 999999999, Emin = -999999999, capitals = 1)
  3007. BasicContext = Context(prec = 9, rounding = ROUND_HALF_UP, traps = [
  3008.     DivisionByZero,
  3009.     Overflow,
  3010.     InvalidOperation,
  3011.     Clamped,
  3012.     Underflow], flags = [])
  3013. ExtendedContext = Context(prec = 9, rounding = ROUND_HALF_EVEN, traps = [], flags = [])
  3014. Inf = Decimal('Inf')
  3015. negInf = Decimal('-Inf')
  3016. Infsign = (Inf, negInf)
  3017. NaN = Decimal('NaN')
  3018. import re
  3019. _parser = re.compile('\n#    \\s*\n    (?P<sign>[-+])?\n    (\n        (?P<int>\\d+) (\\. (?P<frac>\\d*))?\n    |\n        \\. (?P<onlyfrac>\\d+)\n    )\n    ([eE](?P<exp>[-+]? \\d+))?\n#    \\s*\n    $\n', re.VERBOSE).match
  3020. del re
  3021.  
  3022. def _string2exact(s):
  3023.     m = _parser(s)
  3024.     if m is None:
  3025.         raise ValueError('invalid literal for Decimal: %r' % s)
  3026.     
  3027.     if m.group('sign') == '-':
  3028.         sign = 1
  3029.     else:
  3030.         sign = 0
  3031.     exp = m.group('exp')
  3032.     if exp is None:
  3033.         exp = 0
  3034.     else:
  3035.         exp = int(exp)
  3036.     intpart = m.group('int')
  3037.     if intpart is None:
  3038.         intpart = ''
  3039.         fracpart = m.group('onlyfrac')
  3040.     else:
  3041.         fracpart = m.group('frac')
  3042.         if fracpart is None:
  3043.             fracpart = ''
  3044.         
  3045.     exp -= len(fracpart)
  3046.     mantissa = intpart + fracpart
  3047.     tmp = map(int, mantissa)
  3048.     backup = tmp
  3049.     while tmp and tmp[0] == 0:
  3050.         del tmp[0]
  3051.     if not tmp:
  3052.         if backup:
  3053.             return (sign, tuple(backup), exp)
  3054.         
  3055.         return (sign, (0,), exp)
  3056.     
  3057.     mantissa = tuple(tmp)
  3058.     return (sign, mantissa, exp)
  3059.  
  3060. if __name__ == '__main__':
  3061.     import doctest
  3062.     import sys
  3063.     doctest.testmod(sys.modules[__name__])
  3064.  
  3065.